/* ===========================================
   AUTH PAGE
=========================================== */

.auth-section{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:60px 20px;

    background:#f5f7fb;

}

/* ===========================================
   CARD
=========================================== */

.auth-card{

    width:100%;

    max-width:450px;

    background:#fff;

    border-radius:16px;

    padding:40px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    text-align:center;

}

/* ===========================================
   LOGO
=========================================== */

.auth-logo{

    margin-bottom:25px;

}

.auth-logo img{

    width:180px;

    height:auto;

}

/* ===========================================
   TITLE
=========================================== */

.auth-card h2{

    font-size:30px;

    color:#0d6efd;

    margin-bottom:8px;

}

.auth-subtitle{

    color:#666;

    margin-bottom:30px;

    font-size:15px;

}

/* ===========================================
   FORM
=========================================== */

.form-group{

    margin-bottom:20px;

    text-align:left;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#333;

}

.form-group input{

    width:100%;

    padding:14px 16px;

    border:1px solid #dcdcdc;

    border-radius:8px;

    font-size:15px;

    transition:.3s;

}

.form-group input:focus{

    outline:none;

    border-color:#0d6efd;

    box-shadow:0 0 0 3px rgba(13,110,253,.15);

}

/* ===========================================
   PASSWORD FIELD
=========================================== */

.password-box{

    position:relative;

}

.password-box input{

    padding-right:50px;

}

.toggle-password{

    position:absolute;

    top:50%;

    right:18px;

    transform:translateY(-50%);

    cursor:pointer;

    font-size:18px;

    color:#666;

    user-select:none;

}

/* ===========================================
   REMEMBER / FORGOT
=========================================== */

.auth-options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

    font-size:14px;

}

.auth-options label{

    display:flex;

    align-items:center;

    gap:8px;

    color:#555;

    cursor:pointer;

}

.auth-options input{

    width:auto;

}

.auth-options a{

    color:#0d6efd;

    text-decoration:none;

    font-weight:500;

}

.auth-options a:hover{

    text-decoration:underline;

}

/* ===========================================
   LOGIN BUTTON
=========================================== */

.auth-btn{

    width:100%;

    padding:15px;

    border:none;

    border-radius:8px;

    background:#0d6efd;

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.auth-btn:hover{

    background:#0b5ed7;

    transform:translateY(-2px);

}

/* ===========================================
   DIVIDER
=========================================== */

.auth-divider{

    display:flex;

    align-items:center;

    margin:30px 0;

}

.auth-divider::before,
.auth-divider::after{

    content:"";

    flex:1;

    height:1px;

    background:#ddd;

}

.auth-divider span{

    padding:0 15px;

    color:#777;

    font-size:14px;

}

/* ===========================================
   GOOGLE BUTTON
=========================================== */

.google-btn{

    width:100%;

    padding:14px;

    border:1px solid #ddd;

    border-radius:8px;

    background:#fff;

    cursor:pointer;

    font-size:15px;

    font-weight:500;

    transition:.3s;

}

.google-btn:hover{

    background:#f8f9fa;

    border-color:#0d6efd;

}

/* ===========================================
   BOTTOM TEXT
=========================================== */

.bottom-text{

    margin-top:25px;

    font-size:14px;

    color:#555;

}

.bottom-text a{

    color:#0d6efd;

    font-weight:600;

    text-decoration:none;

}

.bottom-text a:hover{

    text-decoration:underline;

}

/* ===========================================
   MOBILE
=========================================== */

@media (max-width:576px){

    .auth-card{

        padding:30px 20px;

    }

    .auth-logo img{

        width:150px;

    }

    .auth-card h2{

        font-size:26px;

    }

    .auth-options{

        flex-direction:column;

        align-items:flex-start;

        gap:12px;

    }

}
