:root {
    --bg: #0f1724;
    --card: #0b1220;
    --accent: #ff7a59;
    --muted: #9aa4b2;
    --glass: rgba(255, 255, 255, 0.04);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

html,
body {
    margin: 0;
}

body {
    background:
        radial-gradient(600px 400px at 10% 10%, rgba(255, 122, 89, 0.06), transparent 10%),
        radial-gradient(600px 400px at 90% 90%, rgba(79, 70, 229, 0.04), transparent 10%),
        var(--bg);
    color: #e6eef6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 20px;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.14);
    flex-shrink: 0;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a.btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(90deg, var(--accent), #4f46e5);
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.12);
}

/* ── Shared page layout ────────────────────────────── */
.page-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    min-height: 100vh;
    box-sizing: border-box;
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
    overflow: hidden;
    width: 100%;
}

.brand {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.brand h1 {
    margin: 0;
    font-size: 20px;
}

.small {
    font-size: 13px;
    color: var(--muted);
}

.card-footer {
    padding: 14px 40px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
    border-top: 1px dashed rgba(255, 255, 255, 0.02);
}
