/* body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #041B15;
    scale: 1.0;
} */

.form-container{
    min-height: 65vh;
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #002921;
    font-family: 'Poppins', sans-serif;
    border-radius: 20px;
    position: relative;
    margin: 20px;
}
.headline{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 5px;
}

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

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

.form-content{
    transition: margin 0.3s ease;
}












.errors{
    display: none;
    padding:0 10px;
    margin-bottom: 30px;
    margin-top: -10px;
    color: #FF4D4D;
    font-size: small;
    height: 50px;
}

.errors.visible{
    display: block;
}

.errors li{
    margin-bottom: 5px;
    text-align: center;
}




#passwordRequirements{
    margin-top: 0px;
    min-height: 10vh;
    /* background-color: red; */
    line-height: 5px;
    padding: 0;
    margin-left: 15px;
    /* margin-bottom: 5px; */
}

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

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



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

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

.login-link span a{
    color: #3cb34a8e;
    text-decoration: none;
}

