#SupportModalForm .modal-dialog {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 3.5rem);
}

#SupportModalForm .modal-content {
    width: 100%;
}
#SupportModalForm .modal-content {
    width: 624px;
    margin: 0 auto;
}


.sfe-form-modal {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    padding: 40px;
    background: var(--pallet-color-c-1);
    font-family: 'Peyda', sans-serif;
}

/* Header */
.sfe-form-modal__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.sfe-form-modal__close {
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.sfe-form-modal__close img {
    width: 100%;
    height: 100%;
    display: block;
}

.sfe-form-modal__title {
    margin: 0;
    font-weight: 600;
    font-size: 24px;
    line-height: 40px;
    color: var(--pallet-color-b-1);
}

.sfe-form-modal__desc {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.32px;
    text-align: justify;
    color: var(--pallet-color-b-2);
}

/* Body / fields */
.sfe-form-modal__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.sfe-form-modal__field {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.sfe-form-modal__label {
    width: 100%;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
    text-align: right;
    color: var(--sfe-muted);
}

.sfe-form-modal__input,
.sfe-form-modal__select-input {
    width: 100%;
    height: 47px;
    padding: 12px;
    border: 1px solid var(--pallet-color-c-2);
    border-radius: var(--sfe-radius);
    background: var(--pallet-color-c-1);
    font-family: 'Peyda', sans-serif;
    font-size: 14px;
}

.sfe-form-modal__input:focus,
.sfe-form-modal__select-input:focus {
    outline: none;
    border-color: var(--sfe-yellow);
    box-shadow: none;
}

/* Select */
.sfe-form-modal__select {
    position: relative;
    width: 100%;
}

.sfe-form-modal__select-input {
    appearance: none;
    -webkit-appearance: none;
    padding-left: 40px;
    cursor: pointer;
}

.sfe-form-modal__select-arrow {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* Submit button */
.sfe-form-modal__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    border: none;
    border-radius: var(--sf-btn-radius);
    background: var(--sf-btn-lv1-bg);
    color: var(--sf-btn-lv1-color);
    font-weight: 600;
    font-size: 14px;
    line-height: 26px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.sfe-form-modal__submit:hover {
    background: var(--sf-btn-lv1-bg-hover);
    color: var(--sf-btn-lv1-color-hover);
}

.sfe-form-modal__submit img {
    width: 20px;
    height: 20px;
}
@media (max-width: 767px) {
    #SupportModalForm .modal-content {
        width: 100%;
        margin: 0 auto;
    }
}
