body {
    background: #0d0f12;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #e5e7eb;
}

.auth-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    background: #12151b;
    border: 1px solid #1e222b;
    width: 360px;
    padding: 2rem;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.auth-title {
    font-size: 1.45rem;
    font-weight: 800;
    text-align: center;
}

.auth-error {
    background: #2f13113a;
    border: 1px solid #5f1e1e;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    text-align: center;
    font-size: 0.9rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-form input {
    padding: 0.9rem 1rem;
    background: #15181f;
    border: 1px solid #2a2f3b;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #e5e7eb;
}

.auth-form button {
    padding: 0.75rem;
    background: #1d4ed8;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.15s ease;
}

.auth-form button:hover {
    background: #275eea;
    transform: translateY(-1px);
}

.auth-form button:active {
    transform: translateY(0);
}

.auth-bottom {
    text-align: center;
    font-size: 0.9rem;
}

.auth-bottom a {
    color: #3b82f6;
    text-decoration: none;
}

.auth-bottom a:hover {
    text-decoration: underline;
}

.auth-admin-quick {
    text-align: center;
    margin-top: 6px;
    font-size: 0.85rem;
}

.auth-admin-quick a {
    color: #93c5fd;
    text-decoration: none;
}

.auth-admin-quick a:hover {
    text-decoration: underline;
}


@media (max-width: 420px) {
    .auth-card {
        width: calc(100% - 32px);
        padding: 1.4rem;
    }
}

.auth-admin-quick {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
}

.auth-admin-quick a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    background: #1f2937;
    border: 1px solid #2f3645;
    color: #93c5fd;
    text-decoration: none;
    transition: 0.2s;
}

.auth-admin-quick a:hover {
    background: #2b3446;
    transform: translateY(-1px);
}