.header-image {
    min-height: 30rem;
}

header .header-text {
    top: 50%;
}

header .header-text h1 {
    /* color: var(--normal-black); */
    font-size: 5rem;
    letter-spacing: 0.625rem;
    text-align: center;
}

#section-forgot-password {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
}

#form-forgot-password {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 50%;
}

#form-forgot-password button {
    /* font-size: 1.25rem; */
}

@media screen and (max-width: 991px){
    header .header-text {
        width: 80%;
    }

    #section-forgot-password {
        padding: 1rem;
    }

    #form-forgot-password {
        width: 70%;
    }
}

@media screen and (max-width: 767px){
    .header-image {
        min-height: 25rem;
    }

    header .header-text {
        top: 40%;
        width: 100%;
        padding: 0 1rem;
    }

    #form-forgot-password {
        width: 80%;
    }

}

@media screen and (max-width: 575px){
    header .header-text h1 {
        font-size: 4rem;
    }

    #form-forgot-password {
        width: 90%;
    }
}

@media screen and (max-width: 375px){
    header .header-text h1 {
        font-size: 3rem;
    }

    #form-forgot-password {
        width: 100%;
    }
}

