*{
    box-sizing: border-box;
    margin:0;
    padding:0;
    
}

body{
    background-color: #fbfcf8;
}

image{
    width: 100%;
}

.container{
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;

}

.container h1{
    margin-left: 5px;
    font-size: 16px;
    font-weight: 400;
    
}

.container img{
    width: 25px;
    height: auto;
}

.line{
    background-color: #E5E8EB;
    width: 100%;
    height: 1px;
    margin-top: 1px;
}

.cont {
    padding: 1.5vw;
    text-align: center; /* Centers text horizontally */
    margin-top: 40px;
}

.cont h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 10px 10px;
}

.form-group {
    position: relative;
    margin: 30px auto;
    width: 300px;
    border-radius: 10px;
}

input {
    width: 100%;
    padding: 12px 12px 12px 8px;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    outline: none;
}

label {
    position: absolute;
    left: 10px;
    top: 12px;
    background: white;
    padding: 0 4px;
    color: #999;
    transition: 0.2s ease;
    pointer-events: none;
}

input:focus + label,
input:not(:placeholder-shown) + label {
    top: -8px;
    right: 10px;
    font-size: 12px;
    color: #333;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 18px;
    transition: color 0.2s;
}

.toggle-password.active {
    color: #4F80C9;
}


.submit-btn {
    width: 300px;
    margin: 20px auto 0;
}

.submit-btn button {
    width: 100%;
    padding: 12px 0;
    background-color: #4F80C9; /* example color */
    color: white;
    border: none;       /* remove border */
    border-radius: 5px; /* optional rounded corners */
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn button:hover {
  background-color: #004b99; /* darken on hover */
}

.cont {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.BrandeisLogo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.03;
    z-index:0;
    pointer-events: none;
    background-color: #A9E3B4;
}

.BrandeisLogo img {
    max-width: 100%;
    width: 500px;
    height: auto;
    margin-top: -105px;
}

.cont h2 {
    position: relative;
    z-index: 1;
    font-size: 22px;
}

.MoreLog-InInfo{
    position: relative;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    cursor: pointer;
    color: #333;
    transition: color 0.2s ease;
    
}
.MoreLog-InInfo:hover {
    color: #4F80C9;
}

.signupForm {
    display: none;
    opacity: 0;
    transform: translateY(80px); /* Start lower */
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.signupForm.show {
    display: block;
    opacity: 1;
    transform: translateY(0); /* Moves into place */
}




/* Optional: Center text and hover effect */
.MoreLog-InInfo {
    text-align: center;
    cursor: pointer;
    margin-top: 8px;
    font-size: 12px;
    color: #697382;
    transition: color 0.3s;
}
.MoreLog-InInfo:hover {
    color: #4F80C9;
}





