body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    color: #fff;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.wrap {
    width: min(920px, 100%);
}

.card {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(2px);
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
}

.brand img {
    height: 72px;
    width: auto;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.62);
    padding: 5px;
}

h1 {
    margin: 0 0 8px 0;
    font-size: clamp(1.2rem, 2.4vw, 1.7rem);
    color: #fff;
}

.login-title,
.login-subtitle {
    text-align: center;
}

.login-hint {
    margin-top: 8px;
    color: #ffd7d7;
}

p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
}

.security-note {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.72rem;
    line-height: 1.25;
    text-align: center;
}

.legal-note {
    margin-top: 4px;
    text-align: center;
}

.legal-note a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.7rem;
    text-decoration: underline;
    text-underline-offset: 1px;
}

.legal-note a:hover,
.legal-note a:focus-visible {
    color: #fff;
}

.choices {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.choice {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.choice h2 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
}

.choice p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
    min-height: 42px;
}

.btn {
    border: 1px solid #0f4a6b;
    background: #0d3f5a;
    color: #fff;
    border-radius: 8px;
    min-height: 40px;
    padding: 8px 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
    background: #135376;
    border-color: #1a668f;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.btn.secondary {
    background: #124d6f;
    color: #fff;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
    background: #19618a;
    border-color: #2374a1;
}

.btn.disabled {
    background: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.65);
    border-color: rgba(255, 255, 255, 0.35);
    cursor: not-allowed;
    pointer-events: none;
}
