/* ==========================================
   FORGOT PASSWORD PAGE
========================================== */

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

.auth-form .form-group label{
    display:block;
    margin-bottom:10px;
    font-size:15px;
    font-weight:600;
    color:#111827;
}

.auth-form .form-group input{
    width:100%;
    height:58px;
    padding:0 18px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    background:#fff;
    font-size:15px;
    transition:.3s;
    box-sizing:border-box;
}

.auth-form .form-group input:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.08);
}

.auth-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:12px;
    background:#2563eb;
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.auth-btn:hover{
    background:#1d4ed8;
}

.auth-footer{
    margin-top:25px;
    text-align:center;
    color:#6b7280;
    font-size:15px;
}

.auth-footer a{
    color:#2563eb;
    font-weight:700;
    text-decoration:none;
}

.auth-footer a:hover{
    text-decoration:underline;
}

/* Success Alert */

.auth-alert.success{
    background:#dcfce7;
    color:#166534;
    border:1px solid #bbf7d0;
    padding:15px 20px;
    border-radius:12px;
    margin-bottom:20px;
}

/* Error Alert */

.auth-alert.error{
    background:#fee2e2;
    color:#991b1b;
    border:1px solid #fecaca;
    padding:15px 20px;
    border-radius:12px;
    margin-bottom:20px;
}

/* Forgot Password Specific */

.auth-right .auth-tabs{
    margin-bottom:30px;
}

.auth-right .auth-tabs a{
    color:#6b7280;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
}

.auth-right .auth-tabs a:hover{
    color:#2563eb;
}

.auth-left-content h2{
    margin-bottom:15px;
}

.auth-left-content p{
    max-width:500px;
}

/* Tablet */

@media(max-width:991px){

    .auth-container{
        grid-template-columns:1fr;
        max-width:700px;
    }

    .auth-left{
        min-height:280px;
    }

    .auth-left-content{
        padding:40px;
    }

    .auth-left-content h2{
        font-size:42px;
    }

    .auth-left-content p{
        font-size:18px;
    }

    .auth-right{
        padding:40px;
    }

}

/* Mobile */

@media(max-width:768px){

    .auth-wrapper{
        padding:15px;
    }

    .auth-container{
        border-radius:20px;
    }

    .auth-right{
        padding:25px;
    }

    .auth-left{
        min-height:220px;
    }

    .auth-left-content{
        left:25px;
        right:25px;
    }

    .auth-left-content h2{
        font-size:32px;
    }

    .auth-left-content p{
        font-size:15px;
    }

    .auth-btn{
        height:55px;
        font-size:16px;
    }

}

/* Small Mobile */

@media(max-width:480px){

    .auth-left{
        display:none;
    }

    .auth-container{
        grid-template-columns:1fr;
        min-height:auto;
    }

    .auth-right{
        padding:20px;
    }

    .auth-logo h1{
        font-size:26px;
    }

    .auth-tabs{
        gap:15px;
    }

}