:root {
    --blue: #69A1C8;
    --blue-dark: #17334a;
    --ink: #101820;
    --muted: #66717c;
    --line: #dce5ec;
    --soft: #f4f8fb;
}

@font-face {
    font-family: "Blueprint Roboto";
    src: url("/fonts/Roboto-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Blueprint Wide";
    src: url("/fonts/Garp Sans Wide.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background: #edf1f4;
    font-family: "Blueprint Roboto", Arial, sans-serif;
}
button, input, select { font: inherit; }
.eval-form-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 42px 20px;
}
.form-shell {
    width: min(100%, 620px);
    padding: 34px 38px 38px;
    border: 1px solid #d9e1e7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(16, 24, 32, .08);
}
.form-header {
    display: grid;
    justify-items: center;
    gap: 16px;
    padding: 12px 0 28px;
    border-bottom: 2px solid var(--blue);
    text-align: center;
}
.form-header img {
    width: 88px;
    max-height: 88px;
    object-fit: contain;
    height: auto;
}
.form-header p,
.form-header h1 {
    margin: 0;
}
.form-header p {
    color: var(--blue);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.form-header h1 {
    margin-top: 7px;
    font-family: "Blueprint Wide", "Blueprint Roboto", Arial, sans-serif;
    font-size: 30px;
    line-height: 1;
    text-transform: uppercase;
}
.public-eval-form {
    display: grid;
    gap: 20px;
    padding: 30px 0 0;
}
label {
    display: grid;
    gap: 9px;
    color: var(--ink);
    font-size: 14px;
    letter-spacing: .3px;
    text-transform: uppercase;
}
input,
select {
    width: 100%;
    height: 54px;
    min-width: 0;
    padding: 0 15px;
    border: 1px solid #b8c6d0;
    border-radius: 6px;
    color: var(--ink);
    background: #fff;
    outline: 0;
    font-size: 16px;
}
input:focus,
select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(105, 161, 200, .16);
}
.submit-btn {
    height: 54px;
    margin-top: 6px;
    border: 0;
    border-radius: 6px;
    color: #061018;
    background: linear-gradient(180deg, #8fcdf0, #6faed8);
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}
.submit-btn:hover {
    background: linear-gradient(180deg, #9ed7f4, #78b9df);
}
.submit-btn:disabled {
    opacity: .62;
    cursor: not-allowed;
}
.form-status {
    min-height: 20px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    text-align: center;
}
.form-status.success {
    color: #15803d;
}
.form-status.error {
    color: #b91c1c;
}

@media (max-width: 620px) {
    .eval-form-page {
        padding: 22px 16px;
    }
    .form-shell {
        padding: 24px 20px 28px;
    }
    .form-header {
        padding-top: 6px;
    }
    .form-header h1 {
        font-size: 24px;
    }
}
