:root {
    --bg-top: #eaf6ff;
    --bg-bottom: #d8ecff;
    --card-bg: #ffffff;
    --text-main: #16324a;
    --text-soft: #4f6b80;
    --border: #c8deef;
    --accent: #4a97d1;
    --accent-hover: #3d86be;
    --status-bg: #eef7ff;
    --error-bg: #fff1f3;
    --error-text: #a62b44;
    --shadow: 0 14px 36px rgba(40, 92, 140, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
    min-height: 100vh;
}

.page {
    max-width: 760px;
    margin: 0 auto;
    padding: 36px 20px 28px;
}

.hero {
    text-align: center;
    margin-bottom: 24px;
}

.logo {
    display: block;
    width: 200px;
    max-width: 75%;
    height: auto;
    margin: 0 auto 18px;
}

h1 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
    color: var(--text-main);
}

.subtitle {
    margin: 12px auto 0;
    max-width: 600px;
    color: var(--text-soft);
    font-size: 1rem;
}

.timezone-note {
    margin-top: 14px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 24px;
}

.field {
    margin-bottom: 18px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-main);
}

input,
select,
button {
    width: 100%;
    font-size: 16px;
    border-radius: 10px;
}

input,
select {
    padding: 12px 14px;
    border: 1px solid var(--border);
    background: #fdfefe;
    color: var(--text-main);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(74, 151, 209, 0.15);
}

.primary-button {
    padding: 13px 16px;
    border: none;
    background: var(--accent);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.15s ease;
    margin-top: 8px;
}

.primary-button:hover {
    background: var(--accent-hover);
}

.primary-button:disabled {
    opacity: 0.65;
    cursor: default;
}

.message {
    margin-top: 16px;
    padding: 13px 14px;
    border-radius: 10px;
    white-space: pre-wrap;
    font-size: 0.95rem;
}

.status {
    background: var(--status-bg);
    color: var(--text-main);
    border: 1px solid #cfe5f5;
}

.error {
    background: var(--error-bg);
    color: var(--error-text);
    border: 1px solid #f0c6cf;
}

.footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-soft);
    font-size: 0.95rem;
}