/* ── Login ── */

.auth-page {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 400px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.auth-logo-img {
    height: 48px;
    width: auto;
}

.auth-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 13px;
    color: var(--color-text-muted);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-submit {
    width: 100%;
    padding: 11px 20px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 2px;
}

.auth-submit:hover:not(:disabled) {
    background: #3a3935;
}

.auth-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: var(--color-text-muted);
}
