.en-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 5em;
}
@media screen and (max-width: 767px) {
    .en-form-wrap {
        gap: 2.5em;
    }
}

.en-form-content {
    border-top: 1px solid #dee2e6;
}

.en-form-row {
    display: flex;
    border-bottom: 1px solid #dee2e6;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .en-form-row {
        flex-direction: column;
    }
}

.en-form-label {
    display: flex;
    justify-content: space-between;
    width: 30%;
    padding: 15px;
}
@media screen and (max-width: 767px) {
    .en-form-label {
        width: 100%;
    }
}

.en-form-label__title {
    font-size: 1.5rem;
    font-weight: 700;
}

.en-form-label__required {
    padding: 4px 20px;
    color: red;
    font-size: 1.1rem;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .en-form-label__required {
        padding-inline: 10px;
        font-size: 1rem;
    }
}

.en-form-field {
    width: 70%;
    padding: 15px;
    font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
    .en-form-field {
        width: 100%;
    }
}

.en-form-field .wpcf7-radio .wpcf7-list-item {
    margin-left: 0;
    margin-right: 1em;
}
@media screen and (min-width: 768px) {
    .en-form-field .wpcf7-radio .wpcf7-list-item {
        font-size: 1.6rem;
    }
}

.en-form-field input[type="text"],
.en-form-field input[type="email"],
.en-form-field input[type="tel"],
.en-form-field textarea {
  border: 1px solid #dee2e6;
  padding: 5px 10px;
  width: 100%;
}

.en-form-submit {
    text-align: center;
}

.en-form-submit input[type="submit"] {
    display: inline-block;
    padding: 8px 20px;
    background-color: #2a5aaa;
    color: #fff;
    font-size: 140%;
}
@media screen and (max-width: 767px) {
    .en-form-submit input[type="submit"] {
        width: 100%;
        font-size: 100%;
    }
}