.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.contact-item {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-item-inner,
.reg-consents,
.submit-btn {
    width: 100%;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.contact-item-inner input,
.contact-item-inner textarea,
.contact-item-inner .reg-select-btn {
    width: 100%;
    min-height: 72px;
    padding: 20px 24px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    background: #ffffff;
    color: #243b64;
    font-size: 18px;
    line-height: 1.4;
    box-shadow: none;
    outline: none;
}

.contact-item-inner input::placeholder,
.contact-item-inner textarea::placeholder {
    color: #243b64;
    opacity: 1;
}

.contact-item-inner textarea {
    min-height: 180px;
    resize: vertical;
}

.reg-select-native {
    width: 100%;
    min-height: 72px;
    padding: 20px 52px 20px 24px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    background-color: #ffffff;
    color: #243b64;
    font-size: 18px;
    line-height: 1.4;
    box-shadow: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'><path fill='%23243b64' d='M3.2 5.5 8 10.3l4.8-4.8 1.1 1.1L8 12.5 2.1 6.6z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 14px 14px;
}

.reg-select-native:hover,
.reg-select-native:focus {
    border-color: #d8e0ea;
    box-shadow: none;
    outline: none;
}

.reg-select-native:invalid {
    color: #243b64;
}

.form-check-input {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #0E4A3C;
}

.form-check-label {
    padding-left: 20px !important;
}

.footer-label {
    line-height: 0.6;
}

@media (max-width: 991.98px) {
    .contact-item-inner,
    .reg-consents,
    .submit-btn {
        max-width: 70%;
    }
}

@media (max-width: 767.98px) {
    .contact-item-inner,
    .reg-consents,
    .submit-btn {
        max-width: 100%;
    }
}