input[type="text"].form-control {
    border:none!important;
    border-radius:0;
    border-bottom:1px #CCCCCC solid!important;
        &::placeholder {
            color:#000;
            font-weight:500;
        }
        &:focus {
            border-bottom:1px #FFC825 solid!important;
            box-shadow:none;
        }
}


div.bx-auth-reg input.bx-auth-input {vertical-align:middle;}
div.bx-auth-reg span.bx-auth-secure {background-color:#FFFAE3; border:1px solid #DEDBC8; padding:2px; display:inline-block; vertical-align:middle;}
div.bx-auth-reg div.bx-auth-secure-icon {background-image:url(images/sec.png); background-repeat:no-repeat; background-position:center; width:19px; height:18px;}
div.bx-auth-reg div.bx-auth-secure-unlock {background-image:url(images/sec-unlocked.png);}

.bx-auth-reg {
    max-width:880px;
    margin:0 auto;
}

.form-inputs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

sup {
    color:#FF6900;
    font-weight: 700;
}

.form-input {
    display: flex;
    align-items: center;
    gap: 15px;
    padding:10px 0;
    & input[type="text"] {
        border:none!important;
        border-radius:0;
        background:transparent;
        border-bottom:1px #FF6900 solid!important;
        color:#fff;
        &::placeholder {
            color:#fff;
            font-weight:500;
        }
        &:focus {
            border-bottom:1px #FFC825 solid!important;
            box-shadow:none;
        }
    }
    & input[type="password"] {
        border:none!important;
        background:transparent;
        border-radius:0;
        border-bottom:1px #FF6900 solid!important;
        color:#fff;
        &::placeholder {
            color:#fff;
            font-weight:500;
        }
        &:focus {
            border-bottom:1px #FFC825 solid!important;
            box-shadow:none;
        }
    }
    & input[type="email"] {
        background:transparent;
        border:none!important;
        border-radius:0;
        border-bottom:1px #FF6900 solid!important;
        color:#fff;
        &::placeholder {
            color:#fff;
            font-weight:500;
        }
        &:focus {
            border-bottom:1px #FFC825 solid!important;
            box-shadow:none;
        }
    }
    & input[type="tel"] {
        background:transparent;
        border:none!important;
        border-radius:0;
        border-bottom:1px #FF6900 solid!important;
        color:#fff;
        &::placeholder {
            color:#fff;
            font-weight:500;
        }
        &:focus {
            border-bottom:1px #FFC825 solid!important;
            box-shadow:none;
        }
    }
}

.errortext {
    font-size: 12px;
    background: mistyrose;
    padding: 10px 15px;
    display: block;
    text-align: left;
}

.inpt_wrapp {
    position: relative;
    flex:1;
    & small {
        font-size: 10px;
        color: #ccc;
        position: absolute;
        display: block;
        padding-top:5px;
    }
}

.form-checkboxes label {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    line-height: 20px;
    color:#ccc;
    font-size:12px;
}

/* Скрываем input */
.form-checkboxes label input[type="radio"] {
    position: absolute;
    left: 0;
    opacity:0;
    pointer-events: none;
}

/* Оформление псевдо-круга */
.form-checkboxes label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #FF6900;
    background-color: transparent;
}

/* Внутренний круг при checked */
.form-checkboxes label::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    transition: all 0.2s ease;
    opacity: 0;
}

/* Показываем inner circle если input внутри label отмечен */
.form-checkboxes label input[type="radio"]:checked ~ *::after {
    opacity: 1;
}

/* Либо более надёжный способ через has() — если поддерживается браузером: */
.form-checkboxes label:has(input[type="radio"]:checked)::after {
    opacity: 1;
}

#reg-success {
    background:#FF6900!important;
    color:#fff!important;
}

@media(max-width:1000px) {
    .form-inputs {
        display:block;
    }
}

@media(min-width:1024px) {

    .form-input:nth-of-type(1) {
        grid-area: 1 / 1 / 2 / 3;
    }
    .form-input:nth-of-type(2) {
        grid-area: 1 / 3 / 2 / 5;
    }
    .form-input:nth-of-type(3) {
        grid-area: 1 / 5 / 2 / 7;
    }
    .form-input:nth-of-type(4) {
        grid-area: 2 / 1 / 3 / 4;
    }
    .form-input:nth-of-type(5) {
        grid-area: 2 / 4 / 3 / 7; 
    }
    .form-input:nth-of-type(6) {
        grid-area: 3 / 1 / 4 / 3;
    }
    .form-input:nth-of-type(7) {
        grid-area: 3 / 3 / 4 / 5;
    }
    .form-input:nth-of-type(8) {
        grid-area: 3 / 5 / 4 / 7;
    }
}