body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: linear-gradient(to right, #f5f5f5, #f5f5f5);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    width: 700px;
    background-color: white;
    border-radius: 12px;
    text-align: center;
    display: flex;
}
.login-container{
    width: 50%;
    display: flex; /* Use flexbox to center the login section */
    justify-content: center; /* Center horizontally */
    background-color: white;
    text-align: center;
    border-radius: 10px 0 0 10px; /* Add rounded corners to the left side */
}
#login-section, 
#reset-password-section {
    width: 65%; /* Adjust the width of the login section */
    background-color: white;
    text-align: center;
}
#login-section img, 
#reset-password-section img {
    width: 50px;
    height: 50px;
    margin-top: 50px;
    margin-bottom: 30px;
}

    
.visualization-container{
    width: 50%;
    background-color: white;
    text-align: center;
    border-radius: 0 10px 10px 0; /* Add rounded corners to the left side */

}

.visualization-container img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the entire area without distortion */
    border-radius: 0 10px 10px 0; /* Add rounded corners to the left side */

}



#login-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
#login-button{
    margin-top: 30px;
}
/* Container around each input+label */
.input-container {
    position: relative;
    display: block; /* Use block to ensure proper spacing */
    margin: 1rem 0; /* Spacing between fields */
}

/* The actual input fields */
.input-container input {
    width: 100%;
    padding: 10px 0; /* Add padding for better spacing */
    border: none;
    box-sizing: border-box;
    font-size: 14px;
    background-color: transparent;
    outline: none;
}

/* Default thin bottom line */
.input-container::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #999; /* Light gray line */
    transform: scaleY(0.5); /* Crisp half-pixel line */
    transform-origin: bottom; /* Ensure scaling happens from the bottom */
}

/* Thicker focus line (initially 0 width) */
.input-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background-color: #333; /* Dark gray focus line */
    transform: scaleY(0.5); /* Crisp half-pixel line */
    transform-origin: bottom; /* Ensure scaling happens from the bottom */
    transition: width 0.3s ease;
}

/* Expand the focus line to full width on focus */
.input-container:focus-within::after {
    width: 100%;
}

/* The floating label (initially acts as a placeholder) */
.input-container label {
    position: absolute;
    top: 10px; /* Start at the same level as the input text */
    left: 0;
    font-size: 14px;
    color: #999; /* Light gray label text */
    pointer-events: none; /* Ensure clicks go to the input */
    transition: 0.2s ease all; /* Smooth transition for label movement and color */
}

/* Move label up and shrink it when input is focused or has text */
.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label {
    top: -10px; /* Move the label above the input */
    font-size: 12px; /* Shrink the label text */
    color: #333; /* Dark gray label text */
}


button {
    appearance: none;
    background-color: #1a1a1a;
    border: 0.1em solid #1A1A1A;
    border-radius: 0.9375em;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 2em;
    min-width: 0;
    outline: none;
    padding: 0.5em 1em;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
   }
   
   button:disabled {
    pointer-events: none;
   }
   
   button:hover {
    color: #3B3B3B;
    background-color: white;
    /* box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px; */
   }
   
   button:active {
    box-shadow: none;
    transform: translateY(0);
   }

.toggle-button {
    margin-top: 15px;
}

.forgot-password {
    margin-top: 15px;
    font-size: 12px;
}

.forgot-password a {
    text-decoration: none;
    color: #666;
}







.forgot-password-container {
    margin: 15px 0 0 0; /* Set 12px margin-top, and 0 for other margins */
    padding: 0;
    text-align: center; /* Center the link */
}

.forgot-password-link {
    text-decoration: none;
    color: black;
    font-size: 12px; /* Smaller font size */
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: #333; /* Slightly darker color on hover */
}


.back-to-login-container {
    margin: 12px 0 0 0; /* Set 12px margin-top, and 0 for other margins */
    padding: 0;
    text-align: center; /* Center the link */
}

.back-to-login-link {
    text-decoration: none;
    color: black;
    font-size: 12px; /* Smaller font size */
    transition: color 0.3s ease;
}

.back-to-login-link:hover {
    color: #333; /* Slightly darker color on hover */
}