:root {
    --auth-bg: linear-gradient(135deg, #0b1324 0%, #0f172a 50%, #0b1220 100%);
    --card-bg: rgba(12, 18, 32, 0.95);
    --border: rgba(255, 255, 255, 0.08);
    --text: #e5e7eb;
    --muted: rgba(255, 255, 255, 0.7);
    --accent: #d4d25b;
}

.auth-page {
    background: var(--auth-bg);
    padding: 64px 0;
    min-height: calc(100vh - 100px);
}

.auth-container {
    max-width: 1100px;
    margin: 0 auto;
}

.auth-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    color: var(--text);
}

.auth-left {
    padding: 32px;
    background: linear-gradient(160deg, rgba(212, 210, 91, 0.16), rgba(138, 134, 49, 0.12));
}

.auth-right {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    background: rgba(12, 18, 32, 0.98);
}

.eyebrow {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(212, 210, 91, 0.2);
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
}

.auth-card h1 {
    color: #fff;
    font-weight: 800;
    margin: 4px 0 12px;
    font-size: 28px;
}

.lead {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: grid;
    gap: 10px;
}

.bullet-list li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    font-weight: 600;
}

.bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 18px;
    line-height: 1;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(212, 210, 91, 0.18);
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.auth-right h2 {
    color: #fff;
    font-weight: 800;
    margin: 6px 0 6px;
    font-size: 22px;
}

.muted {
    color: var(--muted);
}

.muted a {
    color: var(--accent);
    font-weight: 700;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d4d25b, #c4c24b) !important;
    color: #000 !important;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    border: none !important;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 14px 30px rgba(212, 210, 91, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #e4e26b, #d4d25b) !important;
    color: #000 !important;
    box-shadow: 0 18px 36px rgba(212, 210, 91, 0.4);
}

.form-grid {
    display: grid;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #f8fafc;
    font-size: 14px;
    margin-bottom: 4px;
}

.form-label .icon {
    color: var(--accent);
    font-size: 18px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(212, 210, 91, 0.35);
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 15px;
    -webkit-text-fill-color: #ffffff !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(20, 30, 50, 0.98) inset !important;
    box-shadow: 0 0 0 1000px rgba(20, 30, 50, 0.98) inset !important;
    border-color: rgba(212, 210, 91, 0.5) !important;
    caret-color: #ffffff !important;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.45) !important;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 0 0 3px rgba(212, 210, 91, 0.22);
}

.auth-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    cursor: pointer;
}

.muted-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.muted-link:hover {
    text-decoration: underline;
}

.alert {
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
}

.alert-success {
    background: rgba(52, 211, 153, 0.12);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.35);
}

.alert-danger {
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.35);
}

.error-text {
    margin-top: 6px;
    color: #fca5a5;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.auth-hero-header {
    text-align: center;
    color: #fff;
    padding: 24px 16px 12px;
}

.auth-hero-header .heading {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.auth-hero-header .subheading {
    color: var(--muted);
    margin-top: 6px;
}

@media (max-width: 768px) {
    .auth-page {
        padding: 32px 0;
    }
    .auth-card {
        border-radius: 14px;
    }
    .auth-left, .auth-right {
        padding: 24px;
    }
}


