:root {
    color-scheme: light;
    --bg: #ffffff;
    --text: #22282b;
    --accent: #fb5a1c;
    --accent-dark: #d94a13;
    --muted: #7a8287;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

.soon-page {
    min-height: 100vh;
}

.soon-shell {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 32px 24px;
    text-align: center;
}

.soon-logo {
    display: block;
    height: auto;
    max-width: min(240px, 58vw);
    width: 100%;
}

.logo-fallback {
    color: var(--text);
    font-size: clamp(38px, 8vw, 80px);
    font-weight: 700;
    letter-spacing: 0;
}

.soon-shell h1 {
    color: var(--text);
    font-size: clamp(34px, 7vw, 72px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin: 28px 0 24px;
}

.enter-button {
    align-items: center;
    background: var(--accent);
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-size: 30px;
    font-weight: 700;
    height: 58px;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    width: 58px;
}

.enter-button:hover,
.enter-button:focus-visible {
    background: var(--accent-dark);
}

.login-page {
    min-height: 100vh;
}

.login-shell {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 32px 24px;
}

.login-mark {
    display: block;
    margin-bottom: 24px;
}

.login-mark img {
    display: block;
    height: auto;
    width: 96px;
}

.login-panel {
    display: grid;
    gap: 14px;
    max-width: 380px;
    width: 100%;
}

.login-panel h1 {
    font-size: clamp(32px, 6vw, 54px);
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0 12px;
    text-align: center;
}

.login-panel label {
    color: var(--muted);
    display: grid;
    font-size: 13px;
    font-weight: 700;
    gap: 7px;
}

.login-panel input {
    background: #ffffff;
    border: 1px solid #d7dde1;
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    min-height: 46px;
    padding: 10px 12px;
}

.login-panel input:focus {
    border-color: var(--accent);
    outline: 2px solid rgba(251, 90, 28, 0.18);
}

.login-submit {
    background: var(--accent);
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    min-height: 46px;
    padding: 10px 14px;
}

.login-submit:hover,
.login-submit:focus-visible {
    background: var(--accent-dark);
}

.login-message {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    margin: 2px 0 0;
    min-height: 20px;
    text-align: center;
}

.login-message.is-error {
    color: #b42318;
}

@media (max-width: 560px) {
    .soon-logo {
        max-width: min(210px, 64vw);
    }

    .enter-button {
        font-size: 26px;
        height: 52px;
        width: 52px;
    }
}
