html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: radial-gradient(circle at top left, #ff7a18 0, #af002d 36%, #000000 100%);
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: rgba(15, 23, 42, 0.96);
    border-radius: 18px;
    padding: 24px 24px 22px;
    color: #e5e7eb;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.auth-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.auth-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #ff6a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #0b1120;
}

.auth-logo-text {
    display: flex;
    flex-direction: column;
}

.auth-logo-title {
    font-size: 18px;
    font-weight: 700;
}

.auth-logo-subtitle {
    font-size: 11px;
    color: #9ca3af;
}

.auth-title {
    font-size: 20px;
    margin: 4px 0 4px;
}

.auth-subtitle {
    font-size: 13px;
    color: #9ca3af;
    margin: 0 0 16px;
}

.auth-error {
    background: rgba(248, 113, 113, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.7);
    color: #fecaca;
    font-size: 13px;
    border-radius: 10px;
    padding: 8px 10px;
    margin-bottom: 12px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.auth-field label {
    font-size: 13px;
    margin-bottom: 4px;
    color: #e5e7eb;
}

.auth-field input {
    border-radius: 10px;
    border: 1px solid #4b5563;
    padding: 8px 10px;
    background: #020617;
    color: #f9fafb;
    font-size: 14px;
    outline: none;
    transition: 0.12s ease;
}

.auth-field input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.7);
}

.auth-btn-primary,
.auth-btn-secondary {
    width: 100%;
    box-sizing: border-box;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: 0.15s ease;
}

.auth-btn-primary {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #0b1120;
    font-weight: 600;
}

.auth-btn-primary:hover {
    filter: brightness(1.07);
}

.auth-btn-secondary {
    background: transparent;
    color: #e5e7eb;
    border: 1px solid #4b5563;
}

.auth-btn-secondary:hover {
    background: rgba(148, 163, 184, 0.1);
}

.auth-note {
    margin-top: 6px;
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
}