.hero{
    margin-top: 2.5rem;    
    margin-bottom: 3.5rem;
}

h1{
    font-size: 3.2rem;
    font-weight: 600;
    /* -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(45deg, #5d7253 0%, #5ab32e 100%); */
    line-height: 1.5;
    color:var(--color);
}

h2{
    margin-bottom: 15px;
    font-weight: 600;
}

form{
    /* border: 1px solid var(--border-color); */
    background-color: var(--white);
    padding: 40px 40px;
    /* border :var(--border); */
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

form *{
    outline: none;
}

form .field label{
    font-size: 0.8rem;
    margin-bottom: 6px;
    display:inline-block
}

form input[type='text'], form select{
    padding:9px 10px;
    border: var(--border);
    width: 100%;
    color: var(--color);
    background-color: #fff;
}

form button{
    padding:9px 30px;
    margin-top: 30px;
    border: 1px solid #3b9bef;
    border-radius: var(--border-radius);
    background-color: #3b9bef;
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
}

form .grid{
    gap:50px;
}

/* Extra Large devices (large desktops, < 1400px) */
@media only screen and (max-width: 1399.98px) {

}

/* Large devices (desktops, < 1200px) */
@media only screen and (max-width: 1199.98px) {
    h1{
        font-size: 3.3rem;
        line-height: 1.5;
    }
}

/* Medium devices (tablets, < 992px) */
@media only screen and (max-width: 991.98px) {
    h1{
        font-size: 2.5rem;
        line-height: 1.2;
    }

    form .grid{
        gap:30px;
    }
}

/* Small devices (landscape phones, < 768px) */
@media only screen and (max-width: 767.98px) {
    h1{
        font-size: 2.3rem;
        line-height: 1.2;
    }
}

/* Extra Small devices (portrait phones, < 576px) */
@media only screen and (max-width: 575.98px) {
    .hero{
        margin-top: 1.9rem;    
        margin-bottom: 2.0rem;
    }
    h1{
        font-size: 1.9rem;
        line-height: 1.2;
    }
}

/* Ultra Small (tiny devices, like older phones < 480px) */
@media only screen and (max-width: 479.98px) {
    .hero{
        margin-top: 1.9rem;    
        margin-bottom: 2.0rem;
    }
    h1{
        font-size: 1.5rem;
        line-height: 1.2;
    }

    h2{
        font-size: 1.15rem;
        font-weight: 500;
        line-height: 1.2;
    }

    form{
        padding: 27px 27px;
    }

    form .grid {
        gap: 12px;
    }
}


.remember-info{
    margin-top: 20px;
    font-family: var(--font-family-english);
    font-size: 0.8rem;
}

.remember-info label div{
    margin-left: 16px;
    margin-top: 5px;
    font-size: 0.72rem;
}

#saveStatus{
    color: green;
    font-size: 0.8rem; 
    font-weight: 500;
    display: inline-block; 
    margin-left: 5px;
    opacity: 0;
    transition: opacity 0.5s ease;
}


