* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #f4f6f8;
    color: #16181b;
}

.page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 16px;
}

.card {
    width: 100%;
    max-width: 720px;
    background: white;
    border-radius: 18px;
    padding: 42px;
    box-shadow: 0 15px 50px rgba(0,0,0,.08);
}

.brand {
    margin-bottom: 32px;
}

.logo {
    display: inline-block;
    background: #d3ed31;
    padding: 9px 14px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 7px;
}

.subtitle {
    margin-top: 10px;
    color: #6b7077;
}

h1 {
    margin: 0 0 10px;
    font-size: 32px;
}

.lead {
    color: #686d74;
    line-height: 1.55;
    margin-bottom: 30px;
}

label {
    display: block;
    margin: 19px 0;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    margin-top: 8px;
    padding: 13px 14px;
    border: 1px solid #d5d9de;
    border-radius: 9px;
    font: inherit;
    background: white;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #9caf20;
    box-shadow: 0 0 0 3px rgba(211,237,49,.25);
}

textarea {
    resize: vertical;
}

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

button,
.button-link {
    display: block;
    width: 100%;
    background: #17191b;
    color: white;
    border: none;
    border-radius: 9px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-top: 26px;
}

button:hover,
.button-link:hover {
    background: #292c2f;
}

.error {
    background: #fff1f1;
    border: 1px solid #e8bcbc;
    border-radius: 9px;
    padding: 13px;
    color: #9c2020;
}

.honeypot {
    position: absolute;
    left: -10000px;
}

.success {
    text-align: center;
}

.status-icon {
    width: 72px;
    height: 72px;
    background: #d3ed31;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
}

.ticket {
    font-size: 34px;
    font-weight: 800;
    margin: 20px 0;
}

@media (max-width: 600px) {
    .card {
        padding: 25px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    h1 {
        font-size: 27px;
    }
}
