/* ===================================
   AUTH PAGES
=================================== */

.auth-container{

    min-height:80vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:50px 20px;
}

.auth-card{

    width:100%;

    max-width:500px;

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

.auth-title{

    text-align:center;

    margin-bottom:30px;

    color:#2563eb;

    font-size:32px;
}

.form-group{

    margin-bottom:20px;
}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;
}

.form-control{

    width:100%;

    padding:14px;

    border:1px solid #cbd5e1;

    border-radius:10px;

    font-size:16px;
}

.form-control:focus{

    outline:none;

    border-color:#2563eb;
}

.auth-btn{

    width:100%;

    border:none;

    background:#2563eb;

    color:white;

    padding:15px;

    border-radius:10px;

    font-size:16px;

    cursor:pointer;
}

.auth-btn:hover{

    background:#1d4ed8;
}

.auth-footer{

    text-align:center;

    margin-top:20px;
}

.auth-footer a{

    color:#2563eb;

    font-weight:600;
}

.auth-card h2{text-align:center;margin-bottom:28px;color:#2563eb}
.auth-card .alert{margin-bottom:18px}
.auth-btn{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;font-weight:700}
.auth-card input[type="checkbox"]{width:18px;height:18px;vertical-align:middle;margin-right:6px}

@media(max-width:576px){
    .auth-container{padding:28px 14px;align-items:flex-start;min-height:auto}
    .auth-card{padding:26px 20px;border-radius:16px}
    .auth-title,.auth-card h2{font-size:27px}
    .form-control{font-size:16px}
}
