.join-store-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.optional-text {
    color: #9CA3AF;
    font-size: 13px;
    font-weight: 400;
    margin-inline-start: 4px;
}

.custom-select.active .custom-select__button {
    background: #27AE60;
    color: #FFFFFF;
}

.custom-select.is-error .custom-select__field {
    border-color: #E53935;
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.10);
}

.contact-form__textarea {
    min-height: 130px;
    padding-top: 18px;
    resize: none;
}

.contact-form__input::placeholder {
    color: #B0B7C3;
}

.contact-form__input:focus {
    outline: none;
    border-color: #27AE60;

    box-shadow:
        0 0 0 4px rgba(39, 174, 96, 0.12);
}

.contact-form__select {
    appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
}

.contact-form__bottom {
    margin-top: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-form__letters,
.contact-form__count {
    font-size: 13px;
    color: #9CA3AF;
}

.contact-form__submit {
    width: fit-content;
    padding: 23px 34px;
    border: none;
    border-radius: 14px;
    background: #27AE60;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.contact-form__submit:hover {
    background: #219150;
    transform: translateY(-1px);
}

.custom-select {
    position: relative;
}

.custom-select__field {
    height: 60px;

    padding-inline-end: 130px;

    border: 1px solid #ECECEC;
    border-radius: 16px;

    background: #fff;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;

    font-size: 15px;
    color: #1A1A1A;
}

.custom-select__field:focus {
    outline: none;

    border-color: #27AE60;

    box-shadow:
        0 0 0 4px rgba(39, 174, 96, 0.12);
}

.custom-select__button {
    position: absolute;

    top: 8px;
    inset-inline-end: 8px;

    width: 110px;
    height: calc(100% - 16px);

    border-radius: 12px;

    background: #F8F8F8;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: #8C8C96;

    font-size: 15px;
    font-weight: 500;

    pointer-events: none;
}

.custom-select__button svg {
    width: 18px;
    height: 18px;
}

html[lang="ar"] .contact-form-col select#business-category,
html[lang="ar"] .contact-form-col select#business-category.custom-select__field {
    direction: rtl;
    text-align: right;
    unicode-bidi: isolate;
}

html[lang="ar"] select#business-category option {
    direction: rtl;
    text-align: right;
}

@media (max-width: 768px) {

    .contact-form__submit {
        width: 100%;
        padding: 16px 16px;
    }

}