:root {
    --sl-blue: #223a75;
    --sl-orange: #f28c23;
    --sl-text: #1b1b1d;
    --sl-muted: rgba(29, 29, 31, 0.65);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 18px 16px 12px;
    font-family: "Exo 2", "Segoe UI", sans-serif;
    font-size: 15px;
    color: var(--sl-text);
    background: #fff;
    line-height: 1.45;
}

form p {
    margin: 0 0 10px;
}

.step-title {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sl-blue);
}

.field {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 12px;
}

.field label {
    flex: 1 1 220px;
    color: var(--sl-muted);
    font-size: 0.92rem;
}

.field label strong {
    color: var(--sl-text);
    font-weight: 700;
}

input,
select {
    width: 120px;
    padding: 10px 12px;
    text-align: right;
    border: 1px solid #c9d2de;
    border-radius: 2px;
    font-family: inherit;
    font-size: 15px;
    color: var(--sl-text);
    background: #fff;
}

input:focus,
select:focus {
    outline: 2px solid rgba(34, 58, 117, 0.25);
    border-color: var(--sl-blue);
}

input[readonly] {
    background: #eef2f7;
    color: var(--sl-blue);
    font-weight: 600;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
    margin-top: 8px;
}

button {
    color: #fff;
    background: var(--sl-blue);
    border: none;
    padding: 11px 22px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.15s ease;
}

button:hover {
    background: #1a2f63;
}

button:active {
    background: #15264f;
}

.reset {
    cursor: pointer;
    color: var(--sl-orange);
    font-weight: 600;
    font-size: 0.9rem;
    user-select: none;
}

.reset:hover {
    text-decoration: underline;
}

.divider {
    height: 1px;
    background: #e3e8ef;
    margin: 20px 0 18px;
    border: 0;
}

sub {
    font-size: smaller;
}
