/* =========================
   GENERAL RESET
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7f6;
    color: #333;
}


a{
    text-decoration: none;
}


/* =========================
   MAIN SECTION
========================= */

.forgot-section{

    min-height: 100vh;

    display: grid;

    grid-template-columns: 1fr 1fr;

}


/* =========================
   LEFT BANNER
========================= */

.forgot-banner{

    position: relative;

    min-height: 100vh;

    background:
        url("images/login-bg.jpg")
        center/cover no-repeat;

    color: #fff;

}


.banner-overlay{

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            135deg,
            rgba(5, 74, 33, 0.96),
            rgba(11, 93, 42, 0.84)
        );

}


.banner-content{

    position: relative;

    z-index: 2;

    min-height: 100vh;

    padding: 50px 70px;

    display: flex;

    flex-direction: column;

}


/* =========================
   BACK HOME
========================= */

.back-home{

    color: #fff;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;

    width: fit-content;

    transition: 0.3s;

}


.back-home:hover{

    transform: translateX(-5px);

}


/* =========================
   BRAND
========================= */

.brand{

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 80px;

}


.brand img{

    width: 75px;

    height: 75px;

    object-fit: contain;

}


.brand h1{

    font-size: 30px;

    letter-spacing: 1px;

}


.brand p{

    margin-top: 4px;

    font-size: 15px;

    opacity: 0.9;

}


.brand span{

    font-size: 13px;

    opacity: 0.8;

}


/* =========================
   WELCOME TEXT
========================= */

.welcome-text{

    max-width: 550px;

    margin-top: auto;

    margin-bottom: auto;

}


.welcome-text h2{

    font-size: 46px;

    margin-bottom: 20px;

}


.welcome-text p{

    font-size: 17px;

    line-height: 1.8;

    opacity: 0.9;

}


/* =========================
   BANNER FOOTER
========================= */

.banner-footer{

    font-size: 13px;

    opacity: 0.7;

}


/* =========================
   RIGHT CONTAINER
========================= */

.forgot-container{

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 50px 30px;

}


.forgot-box{

    width: 100%;

    max-width: 480px;

}


/* =========================
   MOBILE LOGO
========================= */

.mobile-logo{

    display: none;

    text-align: center;

    margin-bottom: 30px;

}


.mobile-logo img{

    width: 65px;

    margin-bottom: 10px;

}


.mobile-logo h2{

    color: #0b5d2a;

    margin-bottom: 5px;

}


.mobile-logo p{

    color: #777;

    font-size: 14px;

}


/* =========================
   FORGOT ICON
========================= */

.forgot-icon{

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: #eaf5ee;

    color: #0b5d2a;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 28px;

    margin-bottom: 25px;

}


/* =========================
   HEADER
========================= */

.forgot-header{

    margin-bottom: 35px;

}


.forgot-header span{

    color: #0b5d2a;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;

}


.forgot-header h2{

    font-size: 36px;

    margin: 10px 0 15px;

    color: #222;

}


.forgot-header p{

    color: #777;

    line-height: 1.7;

}


/* =========================
   FORM
========================= */

.form-group{

    margin-bottom: 25px;

}


.form-group label{

    display: block;

    margin-bottom: 9px;

    font-size: 14px;

    font-weight: 600;

}


.input-box{

    position: relative;

    display: flex;

    align-items: center;

}


.input-box i{

    position: absolute;

    left: 15px;

    color: #0b5d2a;

}


.input-box input{

    width: 100%;

    height: 54px;

    padding: 0 20px 0 45px;

    border: 1px solid #ddd;

    border-radius: 6px;

    outline: none;

    font-size: 14px;

    transition: 0.3s;

}


.input-box input:focus{

    border-color: #0b5d2a;

    box-shadow:
        0 0 0 3px
        rgba(11, 93, 42, 0.08);

}


/* =========================
   RESET BUTTON
========================= */

.reset-btn{

    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 6px;

    background: #0b5d2a;

    color: #fff;

    font-size: 15px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

}


.reset-btn i{

    margin-left: 8px;

}


.reset-btn:hover{

    background: #083f1d;

    transform: translateY(-2px);

}


/* =========================
   BACK LOGIN
========================= */

.back-login{

    text-align: center;

    margin: 30px 0;

}


.back-login p{

    color: #777;

    margin-bottom: 8px;

}


.back-login a{

    color: #0b5d2a;

    font-weight: bold;

}


.back-login a i{

    margin-right: 6px;

}


.back-login a:hover{

    text-decoration: underline;

}


/* =========================
   HELP BOX
========================= */

.help-box{

    display: flex;

    gap: 15px;

    padding: 20px;

    background: #f4f8f5;

    border-left: 4px solid #0b5d2a;

    border-radius: 5px;

}


.help-box > i{

    color: #0b5d2a;

    font-size: 22px;

    margin-top: 3px;

}


.help-box h4{

    margin-bottom: 5px;

}


.help-box p{

    color: #777;

    font-size: 13px;

    line-height: 1.6;

    margin-bottom: 8px;

}


.help-box a{

    color: #0b5d2a;

    font-size: 13px;

    font-weight: bold;

}


.help-box a:hover{

    text-decoration: underline;

}


/* =========================
   TABLET RESPONSIVENESS
========================= */

@media(max-width: 992px){

    .banner-content{

        padding: 40px;

    }


    .welcome-text h2{

        font-size: 38px;

    }


    .brand h1{

        font-size: 25px;

    }

}


/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media(max-width: 768px){

    .forgot-section{

        grid-template-columns: 1fr;

    }


    .forgot-banner{

        display: none;

    }


    .forgot-container{

        min-height: 100vh;

        padding: 40px 25px;

    }


    .mobile-logo{

        display: block;

    }


    .forgot-icon{

        margin-left: auto;

        margin-right: auto;

    }


    .forgot-header{

        text-align: center;

    }


    .forgot-header h2{

        font-size: 30px;

    }

}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width: 480px){

    .forgot-container{

        padding: 30px 20px;

    }


    .forgot-header h2{

        font-size: 26px;

    }


    .help-box{

        padding: 15px;

    }

}