.form__item {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 490px;
    width: 100%;
    padding: 52px 32px 32px;
    gap: 25px;
    border-radius: 25px;
    border: 1px solid #16A180;
    background: rgba(18, 18, 18, 0.65);
    box-shadow: 0px 0px 80px 0px rgba(22, 161, 128, 0.60);
    backdrop-filter: blur(12.5px);
    margin:0 auto 152px;
}

.form__marquee {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 32px;
    border-radius: 24px 24px 0px 0px;
    background: #FC0000;
    color: #FFF;
    text-align: center;
    font-family: Aeonik;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.54px;
    display: flex;
    align-items: center;
    width: 200%;
    animation: marquee 5s linear infinite;
}

.form__marquee.de,
.form__marquee.br{
    font-size: 16px;
}

.form__marquee > span{
    float: left;
    width: 50%;
  }
  
  @keyframes marquee {
    0% { left: 0; }
    100% { left: -100%; }
  }

.form__marquee > span > span{
    display: inline-block;
    margin-left: 5px;
}

.preloader {
    display: none;
    background: white;
    position: absolute;
    top: 0%;
    bottom: 0;
    left: 0%;
    right: 0;
    z-index: 400;
    background-image: url(../images/preloader.gif);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: 0.5;
    border-radius: 8px;
}

.form__logo {
    width: 178px;
    margin-inline: auto;
}

.form__title {

    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.02125rem;
    margin: 0px;

    color: #FFF;
    font-family: Aeonik;
}

.form__row{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form__input-wrapper {
    display: flex;
    position: relative;
}

.form__input {
    transition: all 0.3s ease-in-out;
    width: 100%;
    outline: none;
    padding: 12px 15px;
    /* padding-block: 17px 7px; */
    color: #757575;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem; /* 150% */
    letter-spacing: -0.03rem;
    border: none;
    border-radius: 3px;
    border: 1px solid #EBEBEB;
    background: #FFF;
    /*height: 56px;*/
}

.form__input-wrapper:first-child .form__input {
    border-radius: 10px 10px 0 0;
}

.form__input-wrapper:last-child .form__input {
    border-radius: 0 0 10px 10px;
}


.form__input[type="tel"] {
    padding-block: 16px;
}

.form__input::placeholder {
    color: #6E6E6E;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: Aeonik;
    opacity: 1;
}

.form__input.valid {
    background-color: #e7ffe8;
}

.form__input.error {
    background-color: #ffe7e7;
}

.form__label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    color: rgba(113, 125, 157, 0.35);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.015rem;
    transition: 0.3s ease;
    pointer-events: none;
}

.form__input-wrapper.active .form__label {
    top: 5px;
    transform: none;
    color: rgba(113, 125, 157, 0.35);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.015rem;
}

label.error {
    display: flex;
    transform-style: preserve-3d;
    position: absolute;
    z-index: 500;
    top: calc(100% + 4px);
    left: 0;
    min-width: 90%;
    border-radius: 8px;
    background: #FF2314;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 1.05rem */
    padding: 7px 13px 7px 12px;
}

@media screen and (max-width:480px) {
    label.error {
        font-size: 10px;
    }
}

label.error::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 15px;
    height: 15px;
    background: #FF2314;
    border-radius: 2px;
    transform: translateZ(-1px) rotate(45deg);
    top: -8px;
    left: 11px;
    transform-style: preserve-3d;
}

.intl-tel-input.allow-dropdown .flag-container,
.intl-tel-input.separate-dial-code .flag-container {
    padding: 0 !important;
}

.intl-tel-input .selected-flag {
    outline: none;
    border: none;
    padding: 0 10px !important;
}

input[type="tel"] {
    /*padding-left: 130px !important;*/
}


.form__footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-svg {
    margin-bottom: 0 !important;
}

.checkbox-svg label.checked-svg {
    /*margin-top: -10px!important;*/
    width: 20px !important;
    height: 20px !important;
}

.checked-svg svg {
    background: #FFF !important;
    border-radius: 0 !important;
    border: 1.5px solid var(--colors-gray, #6E6E6E) !important;
    width: 20px!important;
    height: 20px!important;
}

input[id*="cbx"]:checked+.checked-svg svg {
    stroke: #000 !important;
}

.privacy-checkbox p {
    /*padding-left: 9px !important;*/
    color: #717D9D;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.03rem;
}

.intl-tel-input .selected-flag {
    position: relative;
    background-color: #EEE;
}

.privacy-checkbox a {
    color: #717D9D;
    text-decoration: none;
}

.form__protect {
    display: flex;
    align-items: start;
    column-gap: 9px;
}

.form__protect h3 {
    margin: 0;
}

.form__protect-icon {
    width: 16px;
    height: 12px;
    flex-shrink: 0;
}

.form__protect-title {
    color: #FFF;
    font-size: 10px;
    font-weight: 700;
    line-height: normal;
}

.form__protect-description {
    color: #FFF;
    font-size: 6px;
    font-weight: 400;
    line-height: normal;
}

.selected-flag {
    background-color: transparent !important;
}

.selected-flag::after {
    content: "";
    display: flex;
    position: absolute;
    right: 0;
    height: 21px;
    width: 1px;
    background-color: #121B19;
    top: 50%;
    transform: translateY(-50%);
}

.country-name {
    color: #000;
}

.form__submit {
    position: relative;
    display: flex;
    padding: 16px;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    min-width: 220px;
    padding:0 8px 0 32px;
    height: 64px;

    color: #FFF;
    text-align: center;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5625rem; /* 125% */
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.3s ease;
    outline: none;
    border-radius: 32px;
    background: #16A180;
    box-shadow: 0px 5px 65px 0px rgba(22, 161, 128, 0.55);
}

.form__btn-icon{
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form__submit:hover {
    cursor: pointer;
    background: #16e594;
}


@media (max-width: 1200px) {
    .form__title {
        font-size: 2rem;
        line-height: normal;
    }

}

@media (max-width: 700px) {
    .form__item {
        padding: 52px 24px 32px;
        max-width: 100%;
        width: 100%;
        gap: 25px;
        margin-bottom: 20px;
    }

    .form__content {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .form__submit {
    }
}