

.form-container{
    min-height: 60vh;
    width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #002921;
    font-family: 'Poppins', sans-serif;
    border-radius: 20px;
}

.headline{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 40px; */
}

.top-headline{
    font-family: 'roboto', sans-serif;
    font-size: 25px;
    height: 30px;
    color: #34743C;
    margin-top: 0px;
    margin-bottom: 10px;
}

.bottom-headline{
    font-size: 14px;
    width: 100%;
    color: #43563b;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}



form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.input-field{
    min-width:300px;
    min-height: 40px;
    position: relative;
    margin-bottom: 25px;
}



.input-field input::placeholder{
    
    font-size: 12px;
}



.input-field span{
    height: 20px;
    width: 20px;
    position: absolute;
    right: 3%;
    bottom: 50%;
    transform: translateY(50%);
    opacity: 0.4;
    z-index: 100;
}

#usernameFeedback, #passwordMatchFeedback{
    font-size: 13px;
    width: 225px;
    font-family: 'roboto', sans-serif;
    position: absolute;
    left: 2%;
    transform: translateY(220%);
    opacity: 1;
    margin-top: 5px;
}

#passwordRequirements{
    margin-top: 0px;
    line-height: 5px;
    padding: 0;
    margin-left: 15px;
    opacity: 0;
    max-height: 0;
    transform: translateY(-118);
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;

}

#passwordRequirements.visible {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
}

#passwordRequirements svg{
    height: 12px;
    width: 12px;   
}

.invisible{
    display: none;
}

#passwordRequirements p{
    font-family: 'roboto', sans-serif;
    font-size: 13px;
    font-weight: 450;
}



.register-btn{
    background-color:#224831b0;
    color: #3cb34a8e;
    width: 120px;
    height: 47px;
    padding: 20px;
    outline: none;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.login-link{
    font-size: 13px;
    color: #43563b;
}

.login-link span a{
    color: #3ca1b3;

    text-decoration: none;
}

