/* Raxos auth pages (login/register/etc.) — Bootstrap-extended dark theme */

body {
    background: #0b0f17;
    color: #e6e9ef;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.15), transparent 40%),
        radial-gradient(circle at bottom right, rgba(239, 68, 68, 0.1), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.auth-card {
    background: rgba(22, 27, 39, 0.95);
    border: 1px solid #232a3a;
    border-radius: 18px;
    padding: 40px;
    width: 100%;
    max-width: 440px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo h2 {
    font-weight: 900;
    letter-spacing: 4px;
    color: #fff;
    margin: 0;
    font-size: 2rem;
}

.auth-logo h2 span { color: #ef4444; }

.auth-logo p {
    color: #8a93a6;
    font-size: 12px;
    letter-spacing: 3px;
    margin: 5px 0 0;
    text-transform: uppercase;
}

.auth-card .form-label {
    color: #c8cdd9;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.auth-card .form-control {
    background: #0a0e15 !important;
    border: 1px solid #232a3a !important;
    color: #e6e9ef !important;
    padding: 12px 14px;
    border-radius: 10px;
    transition: all 0.2s;
}

.auth-card .form-control:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15) !important;
    background: #0a0e15 !important;
    color: #fff !important;
}

.auth-card .btn-primary {
    background: linear-gradient(135deg, #6366f1, #818cf8);
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: transform 0.2s;
}

.auth-card .btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #4f46e5, #6366f1);
}

.auth-card .btn-outline-light {
    border-color: #232a3a;
    color: #c8cdd9;
    border-radius: 10px;
    padding: 12px 18px;
}

.auth-link {
    color: #818cf8;
    text-decoration: none;
    font-size: 14px;
}

.auth-link:hover {
    color: #a5b4fc;
    text-decoration: underline;
}

.auth-card .form-check-input {
    background: #0a0e15;
    border-color: #232a3a;
}

.auth-card .form-check-input:checked {
    background-color: #6366f1;
    border-color: #6366f1;
}

.auth-card .form-check-label {
    color: #8a93a6;
    font-size: 13px;
}

.invalid-feedback {
    color: #f87171;
    font-size: 13px;
}

.auth-card .alert {
    border-radius: 10px;
    font-size: 14px;
}

.auth-card .alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.auth-card .alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.auth-hint {
    color: #8a93a6;
    font-size: 14px;
    text-align: center;
    margin-bottom: 1rem;
}
