/* ================================================
   RAMIANT BOT — Auth CSS
   Login, register, request access pages
================================================ */

:root {
    --primary:       #7c3aed;
    --primary-light: #a78bfa;
    --primary-dim:   rgba(124,58,237,0.08);
    --primary-hover: #6d28d9;
    --border:        #e5e7eb;
    --surface:       #f9fafb;
    --text:          #374151;
    --text-muted:    #6b7280;
}

/* ── AUTH HEADER ── */
.auth-header {
    padding: 16px 28px;
    background: white;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.auth-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.auth-header-logo-mark {
    width: 32px; height: 32px;
    background: var(--primary);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 13px;
}
.auth-header-logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 18px; color: #111;
}
.auth-header-logo-text span { color: var(--primary); }
.auth-header-link {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
}
.auth-header-link:hover { color: var(--primary); }

/* ── AUTH CARD ── */
.auth-card-title {
    font-size: 24px;
    color: #111;
    margin-bottom: 6px;
    text-align: center;
}
.auth-card-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}

/* ── FORM ── */
.auth-form .form-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.auth-form .form-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    background: white;
    transition: all 0.15s;
}
.auth-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
    outline: none;
}
.auth-form .input-group .input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 13px;
    pointer-events: none;
    z-index: 5;
}
.auth-form .input-group .form-control {
    padding-left: 36px;
}

/* ── BUTTONS ── */
.btn-auth {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-auth:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124,58,237,0.25);
}

/* ── DIVIDER ── */
.auth-divider {
    border-top: 1px solid var(--border);
    margin: 24px 0;
    position: relative;
    text-align: center;
}
.auth-divider span {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0 12px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ── FOOTER ── */
.auth-footer {
    text-align: center;
    font-size: 12.5px;
    color: #9ca3af;
    padding: 20px;
    border-top: 1px solid var(--border);
}
.auth-footer a { color: #6b7280; text-decoration: none; }
.auth-footer a:hover { color: var(--primary); }

/* ── ALERTS ── */
.auth-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13.5px;
    color: #dc2626;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.auth-alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13.5px;
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

/* ── SUCCESS PAGE ── */
.request-success-icon {
    width: 64px; height: 64px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #059669;
    font-size: 26px;
    margin: 0 auto 20px;
}