/* Two column layout */
.registration-form .boxed {
    display: flex;
    gap: 40px;
}

.registration-form .boxed > div {
    flex: 1;
}

.registration-form .boxed.image-left {
    flex-direction: row;
}

.registration-form .boxed.image-right {
    flex-direction: row-reverse;
}

.registration-form .boxed:not(.image-left):not(.image-right) {
    display: block;
    max-width: 680px;
    margin: 0 auto;
}

.registration-form .boxed:not(.image-left):not(.image-right) > div {
    flex: none;
}

.registration-form .media img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.registration-form .boxed .content {
    display: flex;
    flex-direction: column;
}

.registration-form .boxed .form {
    width: 100%;
}

.registration-form .boxed h2.heading {
    font-size: 64px;
    font-weight: 500;
    line-height: 72px;
    letter-spacing: -5.12px;
    margin-bottom: 6px;
}

.registration-form .boxed h3.sub-heading {
    font-family: Instrument-400, sans-serif;
    font-size: 36px;
    line-height: normal;
    margin-bottom: 0;
}

.registration-form .boxed .info {
    margin-bottom: 60px;
    text-align: center;
}

.registration-form .boxed .form {
    max-width: 400px;
    margin: 0 auto;
}

.registration-form .boxed:not(.image-left):not(.image-right) .info {
    text-align: center;
}

.registration-form .boxed .form label {
    font-family: Inter-Regular, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--dark-grey);
    display: block;
}

.registration-form .boxed .form input,
.registration-form .boxed .form textarea
{
    position: relative;
    border-color: var(--olive) !important;
    border-radius: 3px;
    padding: 8px 15px;
}

.registration-form .boxed .form .wpforms-field-file-upload .wpforms-uploader {
    border-width: 2px;
    border-color: var(--olive) !important;
    border-radius: 3px;

}

.registration-form .boxed .form div.wpforms-uploader .dz-message svg,
.registration-form .boxed .form div.wpforms-uploader .dz-message,
.registration-form .boxed .form .wpforms-required-label{
    display: none;
}

.registration-form .boxed .form div.wpforms-uploader {
    background-image: url("images/upload-icon.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50px 50px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.registration-form div.wpforms-container-full input[type=checkbox]:checked:before,
.registration-form div.wpforms-container-full input[type=radio]:checked:before {
    border-color: var(--olive);
    box-shadow: 0 0 0 1px var(--olive), 0 1px 2px rgba(0, 0, 0, 0.15);
    background-color: var(--olive);
}

.registration-form div.wpforms-container-full input[type=radio]:focus:before,
.registration-form div.wpforms-container-full input[type=checkbox]:focus:before {
    border-color: var(--olive);
    box-shadow: 0 0 0 1px var(--olive), 0 1px 2px rgba(0, 0, 0, 0.15);
}

.registration-form div.wpforms-container-full input[type=radio]:checked:after {
    background-color: var(--white);
}

.registration-form div.wpforms-container-full input[type=checkbox]:checked:after {
    border-left: 4px solid var(--white);
    border-bottom: 4px solid var(--white);
}

.registration-form .boxed .form .wpforms-submit-container .wpforms-submit,
.lsb-form-button,
.lsb-form button {
    background-color: var(--orchid);
    color: var(--plum);
    font-family: Inter-Regular, Arial, sans-serif;
    padding: 16px;
    height: 54px;
    width: 100%;
}

.registration-form .boxed .form .wpforms-submit-container .wpforms-submit::before {
    content: url("images/btn-arrow.svg");
    padding-right: 10px;
}

.wpforms-field-readonly input {
    pointer-events: none;
}

/* LaPosta */
.lsb-form-field-wrapper {
    padding-bottom: 25px;
}

.lsb-form input[type=text],
.lsb-form input[type=email],
.lsb-form input[type=tel],
.lsb-form input[type=date],
.lsb-form input[type=time],
.lsb-form input[type=number],
.lsb-form input[type=password],
.lsb-form input[type=search],
.lsb-form input[type=url] {
    width: 100%;
}

.lsb-form-field-error-feedback {
    color: red;
}

.lsb-form input[type=radio]:before,
.lsb-form input[type=radio]:after {

    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    width: 16px;
    height: 16px;
    box-sizing: content-box;
    cursor: pointer;

    border-width: 1px;
    border-style: solid;
    border-color: var(--olive);
    background-color: var(--white);
    background-clip: padding-box;
    background-image: none;
    border-radius: 50%;
}

.lsb-form input[type=radio]:checked:before {
    border-color: var(--olive);
    box-shadow: 0 0 0 1px var(--olive), 0 1px 2px rgba(0, 0, 0, 0.15);
    background-color: var(--olive);
}

.lsb-form input[type=radio]:checked:after {
    background-color: var(--white);
}

.lsb-form input[type=radio]:checked:after {
    border: 1px solid transparent;
    border-radius: 50%;
    transform: scale(0.5);
    -moz-transform: scale(0.47);
    left: calc(-3px + 1px);
    top: calc(-3px + 1px);
}


.lsb-form-check {
    display: flex;
    gap: 30px;
    align-content: center;
    align-items: baseline;
}

@media (max-width: 1520px) {
    .registration-form .boxed {
        gap: 3vw;
    }
}

@media (max-width: 992px) {
    .registration-form .boxed:not(.image-left):not(.image-right) > div {
        padding: 40px 25px;
    }
}

@media only screen and (max-width: 768px) {
    .registration-form .boxed.image-left, .registration-form .boxed.image-right {
        flex-direction: column;
    }

    .registration-form .boxed {
        gap: 25px;
    }

    .registration-form .boxed h2.heading {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -2.56px;
    }

    .registration-form .boxed h3.sub-heading {
        font-size: 24px;
    }
    .registration-form .boxed .info {
        margin-bottom: 20px;
    }
}