:root {
    --ink: #132126;
    --muted: #617176;
    --line: #d9e1df;
    --paper: #f6f7f3;
    --white: #ffffff;
    --green: #00a86b;
    --green-deep: #003f2b;
    --lime: #c8ff5d;
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    display: grid;
    min-height: 100vh;
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
}

.intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px clamp(35px, 6vw, 92px);
    color: var(--white);
    background: var(--green-deep);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    font-size: 1.1rem;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    color: var(--green-deep);
    background: var(--lime);
}

.intro-copy {
    max-width: 430px;
}

.eyebrow {
    margin: 0;
    color: var(--lime);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.intro h1 {
    margin: 15px 0;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.07em;
}

.intro p:not(.eyebrow) {
    max-width: 360px;
    margin: 0;
    color: #b6cbc5;
    line-height: 1.65;
}

.intro-footer {
    color: #96afa8;
    font-size: 0.78rem;
}

.form-area {
    display: grid;
    place-items: center;
    padding: 42px 28px;
}

.form-card {
    width: min(100%, 430px);
}

.back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 40px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.back:hover {
    color: var(--green);
}

h2 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: -0.06em;
}

.form-description {
    margin: 10px 0 26px;
    color: var(--muted);
    line-height: 1.55;
}

.notice {
    margin-bottom: 22px;
    padding: 13px 15px;
    border: 1px solid #b7debd;
    border-radius: 8px;
    color: var(--green-deep);
    background: #e6f4e6;
    font-size: 0.86rem;
    line-height: 1.45;
}

form {
    display: grid;
    gap: 16px;
}

.fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 750;
}

input {
    width: 100%;
    height: 48px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 7px;
    outline: none;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}

input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(13, 107, 82, 0.1);
}

button {
    min-height: 50px;
    margin-top: 6px;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    background: var(--green);
    cursor: pointer;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 800;
}

button:hover {
    background: var(--green-deep);
}

.form-footer {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 0.84rem;
    text-align: center;
}

.form-footer a {
    color: var(--green);
    font-weight: 800;
}

@media (max-width: 760px) {
    .page {
        grid-template-columns: 1fr;
    }
    .intro {
        min-height: 265px;
        padding: 30px;
    }
    .intro-footer {
        display: none;
    }
    .form-area {
        padding: 36px 22px 52px;
    }
}

@media (max-width: 420px) {
    .fields {
        grid-template-columns: 1fr;
    }
    .intro h1 {
        font-size: 2.45rem;
    }
}
