/* Entry screens for login and registration. */
.guest-body-2026 {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 15% 12%, rgba(212, 106, 42, .12), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
}

.guest-body-2026 .auth-shell {
    width: min(460px, 100%);
}

.guest-body-2026 .auth-card {
    padding: 30px 32px;
    border: 1px solid #dfe7f1;
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 70px rgba(18, 27, 42, .1);
}

.guest-body-2026 .auth-brand {
    display: inline-block;
    margin-bottom: 24px;
    color: #121b2a;
    font-size: 22px;
    font-weight: 950;
}

.guest-body-2026 .auth-brand::after {
    content: ".";
    color: #d46a2a;
}

.guest-body-2026 .auth-card h1 {
    margin: 0 0 18px;
    color: #121b2a;
    font-size: 30px;
    line-height: 1.1;
}

.guest-body-2026 .auth-form label span {
    color: #66768a;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.guest-body-2026 .auth-form input {
    min-height: 44px;
    border-color: #cbd6e3;
    border-radius: 8px;
}

.guest-body-2026 .auth-form .rules-agree {
    gap: 8px;
    margin: -5px 0;
}

.guest-body-2026 .auth-form .rules-agree input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-height: 0;
    padding: 0;
}

.guest-body-2026 .auth-form .rules-agree span {
    display: inline;
    margin: 0;
    color: #66768a;
    font-size: 13px;
    line-height: 1.3;
    text-transform: none;
    white-space: nowrap;
}

.guest-body-2026 .btn-primary {
    min-height: 44px;
    border-color: #d46a2a;
    border-radius: 8px;
    background: #d46a2a;
    font-weight: 950;
}

.guest-body-2026 .btn-primary:hover {
    background: #ad4f1c;
}

.guest-body-2026 .auth-link {
    margin: 18px 0 0;
    color: #66768a;
}

.guest-body-2026 .auth-link a {
    color: #ad4f1c;
    font-weight: 950;
}

@media (max-width: 430px) {
    .guest-body-2026 .auth-card {
        padding: 16px;
    }
}
