@font-face {
    font-family: "Kenteken";
    src: url("../assets/Kenteken.woff") format("woff");
}

:root {
    --BackgroundColor: #f6f7f9;
    --CardBackground: #ffffff;
    --SecondaryBackground: #f3f4f6;
    --PrimaryColor: #0f172a;
    --AccentColor: #2563eb;
    --DangerColor: #dc2626;
    --DangerAccentColor: #c92727;
    --MutedText: #64748b;
    --BorderColor: #e5e7eb;
    --InputBackground: #f9fafb;
    --CompleteColor: #22c55e;
    --IncompleteColor: #fbbf24;
    --ShadowSoft: 0 10px 30px rgba(0, 0, 0, 0.06);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
    background: var(--BackgroundColor);
    color: var(--PrimaryColor);
    min-height: 100vh;
}

.hidden {
    display: none !important;
}

.CenteredPage {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.Card {
    background: var(--CardBackground);
    border-radius: 16px;
    box-shadow: var(--ShadowSoft);
    padding: 32px;
    width: 100%;
    max-width: 420px;
}

.Logo {
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
}

.Logo span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--MutedText);
    margin-top: 6px;
}

.Input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--BorderColor);
    background: var(--InputBackground);
    font-size: 16px;
    outline: none;
}

.Input:focus {
    border-color: var(--AccentColor);
    background: #ffffff;
}

.Input:disabled {
    background: var(--SecondaryBackground);
    cursor: not-allowed;
}

.ButtonPrimary {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: var(--AccentColor);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.ButtonSecondary {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--BorderColor);
    background: #ffffff;
    color: var(--PrimaryColor);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.ButtonSecondary:visited {
    color: var(--PrimaryColor);
    text-decoration: none;
}

.ButtonSecondary:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.ButtonDanger {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: var(--DangerColor);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.HelperText {
    margin-top: 16px;
    font-size: 13px;
    text-align: center;
    color: var(--MutedText);
}

hr {
    border: none;
    border-top: 1px solid var(--BorderColor);
    margin: 5px 0;
}

.feedback {
    background-color: #ebf5ff;
    border: 1px solid #4d73fc;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    text-align: center;
}

.fb-red {
    border-color: #fca5a5;
    background-color: #fff1f1;
    color: #b91c1c;
}

.fb-orange {
    border-color: #fdba74;
    background-color: #fff7ed;
    color: #c2850c;
}

.ButtonSmall {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 8px;
    width: 200px;
}

.ButtonTiny {
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 6px;
    width: auto;
}

.LoginForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ButtonPrimary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.Input {
    transition: border-color 0.15s ease, background 0.15s ease;
}

.Input:focus {
    border-color: #4A90E2;
    background: #F0F8FF;
    outline: none;
}

.CheckboxLabel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
}

.CheckboxLabel input[type="checkbox"] {
    width: 25px;
    height: 25px;

    accent-color: #4A90E2;
}

textarea {
    resize: vertical;
    min-height: 50px;
    max-height: 200px;
}

img {
    max-width: 100%;
    border-radius: 12px;
    margin-top: 12px;
}