:root {
    color-scheme: light;
    font-family: "Aptos", "Segoe UI", sans-serif;
    background: #f4f1ea;
    color: #1f2933;
}

body {
    margin: 0;
}

.login-shell {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(34, 94, 84, 0.15), transparent 42%),
        linear-gradient(315deg, rgba(174, 85, 54, 0.18), transparent 36%),
        #f4f1ea;
    display: flex;
    min-height: 100vh;
    padding: 24px;
}

.login-panel {
    background: #fffaf1;
    border: 1px solid #ded3c0;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(37, 42, 46, 0.16);
    display: grid;
    gap: 28px;
    margin: 0 auto;
    max-width: 420px;
    padding: 34px;
    width: 100%;
}

.eyebrow {
    color: #2d675e;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 6px;
    text-transform: uppercase;
}

h1 {
    font-size: 1.85rem;
    line-height: 1.12;
    margin: 0;
}

.login-form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 7px;
}

input {
    border: 1px solid #c9bca6;
    border-radius: 6px;
    font: inherit;
    padding: 12px;
}

.checkbox {
    align-items: center;
    display: flex;
    font-weight: 500;
}

.checkbox input {
    inline-size: 18px;
}

button {
    background: #244943;
    border: 0;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: 13px 16px;
}

.error {
    background: #f7ded8;
    border: 1px solid #d99b8f;
    border-radius: 6px;
    color: #7d2518;
    margin: 0;
    padding: 10px 12px;
}
