:root {
    color-scheme: light;
    --color-primary: #1e3a5f;
    --color-ink: #0f1a2e;
    --color-muted: #525f75;
    --color-surface: #f5f4ee;
    --color-card: #ffffff;
    --color-border: #d9d5c8;
    --color-success: #16a34a;
    --color-error: #dc2626;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    background: var(--color-surface);
    color: var(--color-ink);
    font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

.page {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(15, 26, 46, 0.08);
    max-width: 420px;
    padding: 32px 24px;
    text-align: center;
    width: 100%;
}

.logo {
    display: block;
    height: 72px;
    margin: 0 auto 24px;
    width: 72px;
    border-radius: 12px;
}

.title {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.message {
    color: var(--color-muted);
    font-size: 1rem;
    margin: 0 0 24px;
}

.message--error {
    color: var(--color-error);
}

.message--success {
    color: var(--color-success);
}

.button {
    appearance: none;
    background: var(--color-primary);
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font: inherit;
    font-weight: 600;
    min-width: 200px;
    padding: 14px 24px;
    text-decoration: none;
}

.button:hover,
.button:focus-visible {
    filter: brightness(1.05);
    outline: 2px solid rgba(30, 58, 95, 0.35);
    outline-offset: 2px;
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.button--secondary {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    margin-top: 12px;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 0;
}
