/* ========================================
   Auth Layout
======================================== */

.auth-wrapper{
    min-height:calc(100vh - 160px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px 20px;
}

.auth-card{
    width:100%;
    max-width:520px;
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:40px;
    box-shadow:0 20px 60px rgba(15,23,42,.08);
}

.auth-logo{
    text-align:center;
    margin-bottom:30px;
}

.auth-logo h1{
    font-size:42px;
    font-weight:800;
    color:#2563eb;
    margin-bottom:8px;
}

.auth-logo p{
    color:#64748b;
}

/* ========================================
   Form
======================================== */

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#0f172a;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:14px 16px;
    border:1px solid #cbd5e1;
    border-radius:12px;
    background:#fff;
    transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

/* ========================================
   Button
======================================== */

.auth-btn{
    width:100%;
    border:none;
    border-radius:12px;
    padding:14px;
    background:#2563eb;
    color:#fff;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.auth-btn:hover{
    background:#1d4ed8;
}

/* ========================================
   Alerts
======================================== */

.alert-error{
    background:#fee2e2;
    color:#b91c1c;
    border:1px solid #fecaca;
    padding:14px;
    border-radius:12px;
    margin-bottom:20px;
}

.alert-success{
    background:#dcfce7;
    color:#166534;
    border:1px solid #bbf7d0;
    padding:14px;
    border-radius:12px;
    margin-bottom:20px;
}

/* ========================================
   Footer
======================================== */

.auth-footer{
    text-align:center;
    margin-top:25px;
    color:#64748b;
}

.auth-footer a{
    color:#2563eb;
    font-weight:600;
}

.auth-footer a:hover{
    text-decoration:underline;
}

/* ========================================
   Responsive
======================================== */

@media(max-width:768px){

    .auth-card{
        padding:25px;
    }

    .auth-logo h1{
        font-size:34px;
    }

}