/* Temporary styles for mock pages. Replaced by the design system delivered in M0. */
:root {
    color-scheme: light;
    --ink: #1b2430;
    --muted: #5c6676;
    --rule: #d8dde4;
    --accent: #1f5c8b;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.container {
    max-width: 44rem;
    margin-inline: auto;
    padding-inline: 16px;
}

header nav {
    border-bottom: 1px solid var(--rule);
    padding-block: 12px;
}

.brand {
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}

main {
    padding-block: 24px 40px;
}

footer {
    border-top: 1px solid var(--rule);
    color: var(--muted);
    padding-block: 16px;
    font-size: 0.875rem;
}

h1 {
    font-size: 1.75rem;
    line-height: 1.2;
}

a {
    color: var(--accent);
}

label {
    display: block;
    font-weight: 500;
    margin-block: 12px 4px;
}

input,
select,
textarea {
    width: 100%;
    max-width: 28rem;
    padding: 8px 10px;
    border: 1px solid var(--rule);
    border-radius: 4px;
    font: inherit;
}

button {
    margin-top: 16px;
    padding: 10px 16px;
    border: 0;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font: inherit;
    cursor: pointer;
}

.field-validation-error,
.validation-summary-errors {
    color: #a3341a;
}
