/* ====================================
   DRILLNAV AUTH STYLES
==================================== */

.auth-page{
    margin:0;
    min-height:100vh;
    background:#0b1220;
    color:#f9fafb;
    font-family:Inter,Arial,sans-serif;
}

.auth-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:100vh;
}

/* ====================================
   LEFT SIDE
==================================== */

.auth-left{
    background:linear-gradient(
        135deg,
        #111827,
        #1f2937
    );

    padding:80px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.auth-brand h1{
    margin:0;
    font-size:48px;
    color:#f59e0b;
    font-weight:700;
}

.auth-brand p{
    margin-top:10px;
    color:#9ca3af;
}

.auth-info{
    margin-top:60px;
}

.auth-info h2{
    font-size:36px;
    margin-bottom:20px;
}

.auth-info p{
    color:#d1d5db;
    line-height:1.7;
}

.auth-info ul{
    margin-top:30px;
    padding-left:20px;
}

.auth-info li{
    margin-bottom:15px;
    color:#d1d5db;
}

/* ====================================
   RIGHT SIDE
==================================== */

.auth-right{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.login-card{
    width:100%;
    max-width:500px;
    background:#111827;
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 40px rgba(0,0,0,.4);
}

.login-card h2{
    margin-top:0;
    margin-bottom:10px;
}

.login-card p{
    color:#9ca3af;
    margin-bottom:30px;
}

/* ====================================
   FORM
==================================== */

form{
    display:flex;
    flex-direction:column;
}

form label{
    margin-bottom:8px;
    font-weight:600;
}

form input{
    width:100%;
    padding:14px;
    margin-bottom:20px;
    border:1px solid #374151;
    border-radius:10px;
    background:#1f2937;
    color:#fff;
    font-size:15px;
}

form input:focus{
    outline:none;
    border-color:#f59e0b;
}

.login-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    font-size:14px;
}

.login-options a{
    color:#f59e0b;
    text-decoration:none;
}

.login-options a:hover{
    text-decoration:underline;
}

/* ====================================
   BUTTON
==================================== */

.btn-primary{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#f59e0b;
    color:#000;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(245,158,11,.3);
}

/* ====================================
   FOOTER
==================================== */

.auth-footer{
    text-align:center;
    margin-top:25px;
    color:#9ca3af;
}

.auth-footer a{
    color:#f59e0b;
    text-decoration:none;
    font-weight:600;
}

.auth-footer a:hover{
    text-decoration:underline;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(max-width:900px){

.auth-container{
    grid-template-columns:1fr;
}

.auth-left{
    display:none;
}

.auth-right{
    padding:20px;
}

.login-card{
    padding:30px;
}

}
select{
    width:100%;
    padding:14px;
    margin-bottom:20px;
    border:1px solid #374151;
    border-radius:10px;
    background:#1f2937;
    color:#fff;
    font-size:15px;
}

select:focus{
    outline:none;
    border-color:#f59e0b;
}