.jewel-form {
    max-width: 1024px;
    margin: 0 auto;
}

.jewel-form__row {
    margin-bottom: 16px;
}   

.jewel-form__row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.jewel-form__row--checkboxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jewel-form__row--checkboxes p {
    margin: 0;
    padding: 0;
}

.jewel-form__row--checkboxes br {
    display: none;
}

.jewel-form__label--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.5;
    color: #2f2f2f;
    font-weight: 400;
}

.jewel-form__acceptance {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    border: 2px solid #4a4a4a;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}

.jewel-form__acceptance:checked {
    background: #2f2f2f;
}

.jewel-form__label--checkbox a {
    color: #2f2f2f;
    text-decoration: underline;
}

.jewel-form__label--checkbox a:hover {
    opacity: 0.8;
}

.jewel-form__field {
    width: 100%;
}

.jewel-form input[type="text"],
.jewel-form input[type="email"],
.jewel-form input[type="tel"],
.jewel-form textarea {
    width: 100%;
    border: 2px solid #4a4a4a;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0 22px;
    font-size: 16px;
    line-height: 1.2;
    color: #2f2f2f;
    font-weight: 400;
    outline: none;
    box-sizing: border-box;
}

.jewel-form input[type="text"],
.jewel-form input[type="email"],
.jewel-form input[type="tel"] {
    height: 60px;
}

.jewel-form textarea {
    height: 250px;
    padding-top: 20px;
    resize: vertical;
}

.jewel-form input::placeholder,
.jewel-form textarea::placeholder {
    color: #b7b7b7;
    opacity: 1;
    text-transform: none;
}

.jewel-form input:focus,
.jewel-form textarea:focus {
    border-color: #2f2f2f;
}

.jewel-form .wpcf7-not-valid-tip {
    margin-top: 10px;
    font-size: 14px;
}

.jewel-form__note {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    max-width: 700px;
}

.jewel-form__submit {
    min-width: 300px !important;
    height: 52px !important;
    border: 2px solid #4a4a4a !important;
    background: transparent !important;
    color: #2f2f2f !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 0 30px !important;
    cursor: pointer !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: opacity 0.2s ease !important;
}

.jewel-form__submit:hover {
    opacity: 0.8 !important;
}

p.jewel-form__note {
    margin-bottom: 16px;
}

.jewel-form .wpcf7-spinner {
    display: block;
    margin-top: 12px;
}

@media (max-width: 767px) {
    .jewel-form__row--2col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jewel-form input[type="text"],
    .jewel-form input[type="email"],
    .jewel-form input[type="tel"] {
        height: 52px;
        font-size: 16px;
        padding: 0 18px;
    }

    .jewel-form textarea {
        height: 300px;
        font-size: 20px;
        padding: 18px;
    }

    .jewel-form__submit {
        min-width: 220px;
        height: 62px;
        font-size: 18px;
    }
}