/* =========================
   Forgot Password
========================= */

.auth-section{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px 20px;
    background:#f8faf8;
}

.auth-card{
    width:100%;
    max-width:500px;
    background:#fff;
    border-radius:20px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.auth-header{
    text-align:center;
    margin-bottom:35px;
}

.auth-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#edf5ef;
    color:#2E7D32;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    margin:0 auto 20px;
}

.auth-header h1{
    font-size:32px;
    color:#21452A;
    margin-bottom:12px;
}

.auth-header p{
    color:#777;
    line-height:1.6;
}

/* =========================
   Form
========================= */

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    font-weight:600;
    color:#21452A;
    margin-bottom:8px;
}

.form-group input{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;
    transition:.3s;
    box-sizing:border-box;
}

.form-group input:focus{
    border-color:#2E7D32;
    box-shadow:0 0 0 3px rgba(46,125,50,.15);
}

/* =========================
   Button
========================= */

.auth-btn{
    width:100%;
    border:none;
    border-radius:10px;
    padding:16px;
    background:#2E7D32;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.auth-btn i{
    margin-right:8px;
}

.auth-btn:hover{
    background:#21452A;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(33,69,42,.25);
}

/* =========================
   Footer
========================= */

.auth-footer{
    margin-top:30px;
    text-align:center;
    color:#666;
}

.auth-footer a{
    color:#2E7D32;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.auth-footer a:hover{
    color:#21452A;
}

/* =========================
   Responsive
========================= */

@media(max-width:600px){

.auth-card{
    padding:30px 25px;
}

.auth-header h1{
    font-size:28px;
}

}