.support-form {
    width: 100%;
}

.support-form h2 {
    margin: 0 0 26px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
}

.support-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.support-form-field {
    position: relative;
    min-width: 0;
}

.support-form-field-full {
    grid-column: 1 / -1;
}

.support-form-field label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.support-form-field input,
.support-form-field textarea {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 6px;
    background: #ffffff;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    outline: none;
}

.support-form-field input {
    height: 46px;
    padding: 13px 16px;
}

.support-form-field textarea {
    min-height: 92px;
    resize: vertical;
    padding: 13px 16px;
}

.support-form-field input::placeholder,
.support-form-field textarea::placeholder {
    color: #6B7280;
    opacity: 1;
}

.support-form-field input:focus,
.support-form-field textarea:focus {
    box-shadow: 0 0 0 1px rgba(106, 195, 53, 0.45);
}

.support-form-error {
    display: block;
    min-height: 18px;
    margin-top: 4px;
    color: red;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
}

.support-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.support-form-message {
    display: inline-flex;
    margin-top: 18px;
    padding: 10px 14px;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.94);
    color: #03492C;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
}

.support-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 218px;
    min-height: 46px;
    margin-top: 23px;
    border: 0;
    border-radius: 8px;
    background: #009843;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    transition: filter 160ms ease, transform 160ms ease;
}

.support-form-submit:hover,
.support-form-submit:focus {
    background: #F07A26;
    transform: translateY(-1px);
}

.support-form--compact h2 {
    margin-bottom: 14px;
    color: #2C2C2C;
    font-size: 18px;
    line-height: 26px;
}

.support-form--compact .support-form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
}

.support-form--compact .support-form-field:nth-child(2) {
    order: 3;
}

.support-form--compact .support-form-field:nth-child(3) {
    order: 2;
}

.support-form--compact .support-form-field:nth-child(4) {
    order: 4;
}

.support-form--compact .support-form-field input {
    height: 42px;
    padding: 10px 14px;
}

.support-form--compact .support-form-field textarea {
    min-height: 96px;
    padding: 10px 14px;
}

.support-form--compact .support-form-field input,
.support-form--compact .support-form-field textarea {
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    font-size: 14px;
}

.support-form--compact .support-form-error {
    min-height: 0;
    margin-top: 3px;
    color: #d92d20;
    font-size: 12px;
    line-height: 16px;
}

.support-form--compact .support-form-message {
    margin-top: 10px;
    background: #F7FFF2;
    font-size: 13px;
    line-height: 18px;
}

.support-form--compact .support-form-submit {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    margin-top: 12px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 20px;
}

@media (max-width: 767px) {
    .support-form-grid {
        grid-template-columns: 1fr;
    }

    .support-form-submit {
        width: 100%;
        min-width: 0;
    }
}
