.form__item {
    width: 100%;
    position: relative;
}

.preloader {
    display: none;
    position: absolute;
    top: 0%;
    bottom: 0;
    left: 0%;
    right: 0;
    z-index: 9995;
    background-image: url(../images/preloader.gif);
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 120px 120px;
    opacity: 0.5;
    border-radius: 20px;
}


.form__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.form__input-wrapper {
    width: 100%;
    position: relative;
}

.form__input {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #ACAEB1;
    padding: 18px 8px;
    color: #333232;
    font-size: 16px;
    line-height: normal;
}

.form__input::placeholder {
    color: #ACAEB1;
    font-size: 16px;
    line-height: normal;
}

.form__input:focus {
    border: 1px solid #2DAFF9;
}

.form__input.error {
    border: 1px solid #EB3B3B;
}

label.error {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    color: #EB3B3B;
    font-size: 14px;
    line-height: 30px;
}

.form__input.valid {
    border: 1px solid #37C380;
}