/* ================= PREMIUM LOGIN ================= */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,#0f172a,#1e293b);
    color: #fff;
    padding: 60px 20px;
}

.auth-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: center;
}

.auth-left h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.auth-left p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.auth-trust span {
    display: block;
    margin-bottom: 10px;
    color: #10b981;
    font-weight: 600;
}

.auth-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.auth-header h2 {
    margin-bottom: 6px;
}

.auth-header p {
    color: #cbd5e1;
    margin-bottom: 30px;
    font-size: 14px;
}

.auth-step {
    display: none;
}

.auth-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.auth-card input {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    margin-bottom: 18px;
}

.auth-card input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
}

.primary-btn {
    width: 100%;
    padding: 16px;
    background: #10b981;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.primary-btn:hover {
    background: #059669;
}

.otp-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
}

#resendBtn {
    background: none;
    border: none;
    color: #10b981;
    cursor: pointer;
}

#resendBtn:disabled {
    color: #64748b;
    cursor: not-allowed;
}

.link-btn {
    background: none;
    border: none;
    color: #94a3b8;
    margin-top: 15px;
    cursor: pointer;
}

.auth-message {
    margin-top: 15px;
    font-size: 14px;
}

.auth-message.success {
    color: #10b981;
}

.auth-message.error {
    color: #ef4444;
}

@keyframes fadeIn {
    from { opacity:0; transform:translateY(10px); }
    to { opacity:1; transform:translateY(0); }
}

@media(max-width:900px){
    .auth-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    
}

@media(max-width:900px){

    .auth-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .auth-left {
        display: block;
    }

    .auth-left h1 {
        font-size: 26px;
    }

    .auth-left p {
        font-size: 14px;
    }

    .auth-trust {
        display: none; /* hide checklist only */
    }
}