*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: #efefdb;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

/* MAIN CONTAINER */

.forgot-container{
    width: 100%;
    max-width: 920px;
    min-height: 520px;
    background: #f5f1e6;
    border: 1px solid #8ea07f;
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}


/* LEFT SECTION */

.left-section{
    width: 48%;
    height: auto;
}

.left-section img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT SECTION */

.right-section{
    width: 52%;
    padding: 45px 45px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name{
    font-size: 40px;
    color: #1d6b39;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.title{
    font-size: 18px;
    color: #2d6139;
    margin-bottom: 25px;
    font-weight: 600;
}

/* FORM */

.input-row{
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.input-group{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label{
    font-size: 12px;
    color: #6a7c69;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group input{
    border: none;
    border-bottom: 2px solid #b8c4ae;
    background: transparent;
    padding: 8px 2px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus{
    border-color: #1d6b39;
}

/* BUTTON */

.submit-btn{
    width: 100%;
    height: 42px;
    border: none;
    background: #1d6b39;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 3px 8px rgba(0,0,0,0.10);
}

.submit-btn:hover{
    background: #14502a;
    transform: translateY(-1px);
}

/* LOGIN */

.login-text{
    margin-top: 18px;
    text-align: center;
    color: #6f776f;
    font-size: 13px;
}

.login-text a{
    text-decoration: none;
    color: #3566d6;
    font-weight: 500;
}

/* FOOTER */

.footer-text{
    margin-top: 30px;
    text-align: right;
    font-size: 11px;
    color: #73806f;
}

/* RESPONSIVE */

@media(max-width: 992px){

    .forgot-container{
        flex-direction: column;
        max-width: 700px;
    }

    .left-section,
    .right-section{
        width: 100%;
    }

    .left-section{
        height: 300px;
    }

    .right-section{
        padding: 35px 25px;
    }

    .brand-name{
        font-size: 34px;
        margin-bottom: 25px;
    }
}

@media(max-width: 600px){

    body{
        padding: 12px;
    }

    .forgot-container{
        border-radius: 10px;
    }

    .right-section{
        padding: 28px 18px;
    }

    .brand-name{
        font-size: 28px;
    }

    .title{
        font-size: 20px;
    }

    .input-row{
        flex-direction: column;
        gap: 16px;
    }

    .submit-btn{
        height: 40px;
        font-size: 13px;
    }

    .footer-text{
        text-align: center;
    }
}
.error-message{
    color: red;
    font-size: 13px;
    margin-top: 5px;
}