.form__item {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 360px;
    border-radius: 25px;
    padding: 25px 20px;
    gap: 20px;
    border: 4px solid var(--violet, #7C00E0);
    background: linear-gradient(135deg, #451170 0%, rgba(56, 0, 102, 0.00) 100%);
    box-shadow: 0px 0px 30px 0px #493956;
    filter: drop-shadow(0px 0px 30px rgba(73, 57, 86, 0.5));
    overflow: clip;
}

.preloader {
    display: none;
    background: white;
    position: absolute;
    top: 0%;
    bottom: 0;
    left: 0%;
    right: 0;
    z-index: 9995;
    background-image: url(../images/preloader.gif);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: 0.5;
}

.form__title {
    color: #FFF;
    text-align: center;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;

    margin: 0;
}

.form__input-wrapper {
    display: flex;
    position: relative;
}

.form__input-wrapper:last-child {
    margin-bottom: 0;
}

.form__input {
    transition: all 0.3s ease-in-out;
    width: 100%;
    border-radius: 6px;
    border: none;
    outline: none;
    background: #FFF;
    padding: 10px;
    color: rgba(28, 28, 28, 0.60);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form__input::placeholder {
    color: rgba(28, 28, 28, 0.60);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form__input.valid {
    background: #EBFFF5;
}

.form__input.error {
    background: #FFEEE9;
}

label.error {
    display: flex;
    transform-style: preserve-3d;
    position: absolute;
    z-index: 2;
    top: calc(100% + 4px);
    left: 0;
    min-width: 90%;
    border-radius: 8px;
    background: #FF541D;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
    padding: 7px 13px 7px 12px;
}

label.error::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 15px;
    height: 15px;
    background: #FF541D;
    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;
    border-radius: 6.674px 0px 0px 6.674px;
    padding: 0 10px !important;
}

input[type="tel"] {
    padding-left: 130px !important;
}

.form__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form__submit {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    padding: 17px 10px;
}

.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: 15px !important;
    height: 15px !important;
}

.checked-svg svg {
    background: #FFF !important;
    border-radius: 1.668px !important;
    border: 1.251px solid #1C1C1C !important;
}

#cbx:checked+.checked-svg svg {
    stroke: #1C1C1C !important;
}

#cbx-3:checked+.checked-svg svg {
    stroke: #1C1C1C !important;
}

.privacy-checkbox {
    padding-left: 9px !important;
    font-size: 10px !important;
    line-height: 11px !important;
    color: #FFFFFF !important;
}

.intl-tel-input .selected-flag {
    position: relative;
}

.intl-tel-input .selected-flag:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 26px;
    right: 0;
    background-color: #1C1C1C;
}

.privacy-checkbox a {
    color: inherit;
    text-decoration: unset;
}

.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-style: normal;
    font-weight: 700;
    line-height: normal;
}

.form__protect-description {
    color: #FFF;
    font-size: 6px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 700px) {
    .form__item {
        width: 100%;
    }
}