    /* Password Reset */

    .container_password_reset {

        width: 100%;   

        height: 450px;

        display: flex;

        justify-content: center;

        align-items: center;
        margin: 5rem 0;

    }



    .password_reset {

        background-color: var(--white);

        width: 75%;

        height: auto;

        border-radius: 20px;

        padding-left: 50px;

        padding-right: 50px;

        padding-top: 25px;

        padding-bottom: 25px;

        display: flex;

        justify-content: center;

        align-items: center;

        flex-direction: column;

        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

    }



    .password_reset_title {

        color: var(--darkBlue);
        font-weight: 800;
        font-size: clamp(1.4rem, 4vw, 2rem);
        font-family: var(--familyPoppins);
        text-align: center;
        line-height: 1.1;

    }


    .password_reset_body, .password_update_body{
        width: 100%;

    }
    .password_reset_subtitle{

        font-weight: 500;
        font-size: clamp(.9rem, 3vw, 1.2rem);
        font-family: var(--familyPoppins);

    }



    .password_reset_form, .password_update_form {

        display: flex;

        align-items: center;

        justify-content: center;

        flex-direction: column;

        padding: 0rem 5rem;

        transition: all 0.2s 0.7s;

        overflow: hidden;

        grid-column: 1 / 2;

        grid-row: 1 / 2;

    }



    .input-field  {

        max-width: 400px;

        width: 100%;

        background-color: #f0f0f0;

        margin: 10px 0;

        height: 55px;

        border-radius: 55px;

        display: grid;

        grid-template-columns: 15% 85%;

        padding: 0 0.4rem;

        position: relative;

    }

    .password-field {
        grid-template-columns: 15% 70% 15%;
    }

    .input-field .toggle-password {
        cursor: pointer;
    }

    .input-field i {

        text-align: center;

        line-height: 55px;

        color: #acacac;

        transition: 0.5s;

        font-size: 1.1rem;

    }



    .input-field input {

        background: none;

        outline: none;

        border: none;

        line-height: 1;

        font-weight: 600;

        font-size: 1.1rem;

        color: #333;

        padding-right: 15px;

    }



    .input-field input::placeholder {

        color: #aaa;

        font-weight: 500;

    }



    .btn {

        max-width: 250px;
        width: 100%;

        background-color: #12327b;

        border: none;

        outline: none;

        height: 49px;

        border-radius: 49px;

        color: #fff;

        text-transform: uppercase;

        font-weight: 800;

        margin: 10px 0;

        cursor: pointer;

        transition: 0.5s;

        font-family: var(--familyMontserrat);

    }



    .bnt:hover {

        background-color: #54abff;

    }



    .invalid-feedback{

        color: #ff3737;

        background-color: #ffdfdf;

        border-radius: 15px;

        padding: 2px 10px 2px 10px;

        font-size: 14px;

    }



    .alert-success {

        background-color: #D3EAC8;

        color: #13250e;

        display: flex;

        justify-content: center;

        align-items: center;

        padding-top: 10px;

        padding-bottom: 10px;

        width: 100%;

        border-radius: 5px;

        font-weight: bold;

    }



    .icon_success{

        margin-right: 5px;

        color: #13250e;

    }



    /* Password Update */


    .container_password_update {

        width: 100%;   

        height: 450px;

        display: flex;

        justify-content: center;

        align-items: center;

        margin: 5rem 0;

    }



    .password_update {

        background-color: var(--white);

        width: 50%;

        height: auto;

        border-radius: 20px;

        padding-left: 50px;

        padding-right: 50px;

        padding-top: 25px;

        padding-bottom: 25px;

        display: flex;

        justify-content: center;

        align-items: center;

        flex-direction: column;

        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

    }

    .password_update_title {

        color: var(--darkBlue);
        font-weight: 800;
        font-size: clamp(1.4rem, 4vw, 2rem);
        font-family: var(--familyPoppins);
        text-align: center;
        line-height: 1.1;

    }



    .password_update_subtitle{

        font-weight: 500;
        font-size: clamp(.9rem, 3vw, 1.2rem);
        font-family: var(--familyPoppins);
        text-align: center;

    }
    



    .password_update_form {

        display: flex;

        align-items: center;

        justify-content: center;

        flex-direction: column;

        padding: 0rem 3rem;

        transition: all 0.2s 0.7s;

        overflow: hidden;

        grid-column: 1 / 2;

        grid-row: 1 / 2;

    }


@media screen and (max-width:1200px) {
    .container_password_reset{
        margin: 8rem 0 ;
    }
    .container_password_update{
        margin: 10rem 0 8rem 0 ;
    }
    
}
@media screen and  (max-width:992px ) {
    .container_password_reset {
        margin: 10rem 0 ;
    }
    .container_password_update{
        margin: 12rem  0 7rem 0 ;
    }
    .password_reset_form{
        padding: 0 3rem;
    }
    .password_update_form{
        padding: 0;
    }
  
}
@media screen and  (max-width:768px ) {
    .container_password_reset {
        margin: 15rem 0 ;
    }
    .password_reset ,.password_update{
        padding: 1.7rem 2rem;
    }
    .password_update{
        width: 80%;
    }


}
@media screen and  (max-width:735px ) {
    .container_password_reset  {
        margin: 2rem 0 ;
    }
    .container_password_update {
        margin: 3.5rem  0 2rem 0 ;
    }


}
@media screen and  (max-width:576px ) {
    .password_reset ,.password_update{
        padding: 1.5rem 1.4rem;
    }
    .password_reset_form ,.password_update_form{
        padding: 0;
    }
  
}
@media screen and  (max-width:480px ) {

  
}
@media screen and  (max-width:320px ) {
  
}

