.fsgt93-registration {
    margin: clamp(28px, 5vw, 58px) 0;
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid #e2c9c4;
    border-color: color-mix(in srgb, var(--fsgt93-red, #d63833) 22%, #d8d3cb);
    border-radius: 18px;
    background: #fffaf5;
    color: #1f1f1f;
}

.fsgt93-registration__header {
    max-width: 760px;
    margin-bottom: 26px;
}

.fsgt93-registration__header h2 {
    margin: 4px 0 10px;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.fsgt93-registration__eyebrow {
    margin: 0;
    color: var(--fsgt93-red, #d63833);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.fsgt93-registration__notice {
    margin: 0 0 22px;
    padding: 13px 16px;
    border-left: 4px solid #676767;
    background: #f1efeb;
}

.fsgt93-registration__notice.is-success {
    border-color: #19733b;
    background: #e8f5ec;
}

.fsgt93-registration__notice.is-error {
    border-color: #a32323;
    background: #fbeaea;
}

.fsgt93-registration__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
}

.fsgt93-registration__field {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.fsgt93-registration__field > label,
.fsgt93-registration__field > legend {
    display: block;
    margin: 0 0 7px;
    padding: 0;
    font-size: .96rem;
    font-weight: 700;
}

.fsgt93-registration__field textarea,
.fsgt93-registration__field select,
.fsgt93-registration__field input:not([type="radio"]):not([type="checkbox"]) {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid #8b8781;
    border-radius: 8px;
    background: #fff;
    color: inherit;
    font: inherit;
}

.fsgt93-registration__field textarea {
    min-height: 116px;
    resize: vertical;
}

.fsgt93-registration__field textarea:focus,
.fsgt93-registration__field select:focus,
.fsgt93-registration__field input:focus {
    outline: 3px solid #efb6b3;
    outline: 3px solid color-mix(in srgb, var(--fsgt93-red, #d63833) 30%, transparent);
    outline-offset: 2px;
    border-color: var(--fsgt93-red, #d63833);
}

.fsgt93-registration__field--choices,
.fsgt93-registration__field--consent,
.fsgt93-registration__field:has(textarea) {
    grid-column: 1 / -1;
}

.fsgt93-registration__choices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fsgt93-registration__choices label,
.fsgt93-registration__field--consent label {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    padding: 10px 13px;
    border: 1px solid #c8c2b9;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.fsgt93-registration__choices input,
.fsgt93-registration__field--consent input {
    width: 19px;
    height: 19px;
    margin-top: 2px;
    accent-color: var(--fsgt93-red, #d63833);
}

.fsgt93-registration__privacy {
    margin: 22px 0 0;
    color: #55504a;
    font-size: .88rem;
}

.fsgt93-registration__actions {
    margin: 18px 0 0;
}

.fsgt93-registration__actions button {
    min-height: 48px;
    padding: 11px 20px;
    border: 2px solid var(--fsgt93-red, #d63833);
    border-radius: 8px;
    background: var(--fsgt93-red, #d63833);
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.fsgt93-registration__actions button:hover {
    background: #aa2926;
    border-color: #aa2926;
}

.fsgt93-registration__actions button:focus-visible {
    outline: 3px solid #111;
    outline-offset: 3px;
}

.fsgt93-registration__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 720px) {
    .fsgt93-registration__fields {
        grid-template-columns: 1fr;
    }

    .fsgt93-registration__field--choices,
    .fsgt93-registration__field--consent,
    .fsgt93-registration__field:has(textarea) {
        grid-column: auto;
    }

    .fsgt93-registration__choices {
        display: grid;
    }
}
