.form_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background: #00000085;
    z-index: 10;
}

.closeBck {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
}

.create_new_system {
    width: 50vw;
    height: fit-content;
    padding: 2.5921vh 3.0417vw;
    background: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 12;
}

.first_second_name {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
}

.couple {
    display: flex;
    flex-direction: column;
    width: 44vw;
    height: fit-content;
    margin-bottom: 50px;
}

.couple .iti {
    width: 100%;
}

.first_second_name .couple {
    width: 48%;
}

.main_form_txt {
    font-size: 14px;
    font-weight: 400;
    color: rgb(107, 107, 107);
}

.info_input {
    width: 100%;
    height: 35px;
    color: rgb(107, 107, 107);
    font-size: 16px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(68, 68, 179, 0.801);
    transition: all 0.3s;
}

.info_input:focus {
    border: none;
    border-bottom: 1px solid green;
    transition: all 0.3s;
}

.existing_system {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.existing_system .couple {
    width: 60%;
}

.existing_system .info_input:focus > .domen {
    border-bottom: 1px solid green;
    transition: all 0.3s;
}

.domen {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(68, 68, 179, 0.801);
    transition: all 0.3s;
    font-size: 16px;
    color:rgb(107, 107, 107);
}

.create_new_system .ask_button {
    padding: 2vh 0;
}

.create_new_system .supply_legal {
    width: 45%;
    white-space: normal;
}


.confirm_btn {
    height: fit-content;
    padding: 10px;
}

.inputed {
    display: flex;
    margin-top: 20px;
    justify-content: center;
}

.info_btn_back {
    margin-right: 10px;
}
.info_btn_next {
    margin-left: 10px;
}

.domen_warning, .email_warning {
    color:#c54848;
    opacity: 0;
}

/* для надписи под доменом */
.fade-in {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.image_load_bar {
    position: absolute;
    width: 100%; height: 100%;
    z-index: 13;
    background-color: rgba(0, 0, 0, .25);
    display: none; justify-content: center; align-items: center;
}

@media (max-width: 959px) {
    
    .create_new_system {
        width: 90vw;
    }

    .domen {
        font-size: 16px;
    }

    .create_new_system .supply_legal {
        width: 100%;
        text-align: center;
    }

    .couple {
        width: 100%;
        margin-bottom: 20px;
    }
}