

/* Start:/bitrix/templates/autosimpo_/components/bitrix/main.register/custom_form/style.css?17641534059040*/
.wrapper  {
    overflow-x: hidden !important;
}
@media (min-width: 601px) and (max-width: 1872px) {
    .custom-registration-form {
        position:relative;
        top:-9vw;
        left:-32vw;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.5;
    }
    .form-section {
        width: 35vw;
        margin-bottom: 35px;
        border-top: 1px solid #eee;
        padding-top: 25px;
    }
    .reg_title {
        width: 38vw;
        margin-bottom: 35px;
        border-top: 1px solid #eee;
        padding-top: 25px;
        font-size: 34px;
        font-weight: bold;
        color:var(--grey1);

    }
    .custom-registration-form input[type="text"],
    .custom-registration-form input[type="email"],
    .custom-registration-form input[type="tel"],
    .custom-registration-form input[type="password"],
    .custom-registration-form select {
        width: 30vw;
        padding: 12px 15px;
        border: 1px solid grey;
        border-radius: 8px;
        font-size: 16px;
        box-sizing: border-box;
        transition: border-color 0.3s, box-shadow 0.3s;
    }
    .form-section h2 {
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 25px;
        color: #555;
        letter-spacing: 0.5px;
    }

}

@media (min-width: 1873px) {
    .custom-registration-form {
        position:relative;
        top:-140px;
        left:-550px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.5;
    }
    .form-section {
        width: 500px;
        margin-bottom: 35px;
        border-top: 1px solid #eee;
        padding-top: 25px;
    }
    .reg_title {
        width: 500px;
        margin-bottom: 35px;
        border-top: 1px solid #eee;
        padding-top: 25px;
        font-size: 34px;
        font-weight: bold;
        color:var(--grey1);

    }
    .custom-registration-form input[type="text"],
    .custom-registration-form input[type="email"],
    .custom-registration-form input[type="tel"],
    .custom-registration-form input[type="password"],
    .custom-registration-form select {
        width: 550px;
        padding: 12px 15px;
        border: 1px solid grey;
        border-radius: 8px;
        font-size: 16px;
        box-sizing: border-box;
        transition: border-color 0.3s, box-shadow 0.3s;
    }
    .form-section h2 {
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 25px;
        color: #555;
        letter-spacing: 0.5px;
    }

}

@media (max-width: 600px) {
    .custom-registration-form {
        position:relative;
        top:-50%;
        left:-241%;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.5;
    }
    .form-section {
        width: 100%;
        margin-bottom: 35px;
        border-top: 1px solid #eee;
        padding-top: 25px;
    }
    .reg_title {
        width: 100%;
        margin-bottom: 35px;
        border-top: 1px solid #eee;
        padding-top: 25px;
        font-size: 22px;
        font-weight: bold;
        color:var(--grey1);

    }
    .custom-registration-form input[type="text"],
    .custom-registration-form input[type="email"],
    .custom-registration-form input[type="tel"],
    .custom-registration-form input[type="password"],
    .custom-registration-form select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid grey;
        border-radius: 8px;
        font-size: 16px;
        box-sizing: border-box;
        transition: border-color 0.3s, box-shadow 0.3s;
    }
    .form-section h2 {
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 25px;
        color: #555;
        letter-spacing: 0.5px;
    }
}



/* ==========================================================================
   БЛОКИ И ЗАГОЛОВКИ
   ========================================================================== */
.form-section:first-child {
    border-top: none;
    padding-top: 0;
}

/* ==========================================================================
   ПОЛЯ ВВОДА И ПОДПИСИ (LABELS)
   ========================================================================== */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #666;
}

.custom-registration-form input:focus,
.custom-registration-form select:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}
.starrequired {
    color: #ff0000;
    margin-left: 2px;
}

/* ==========================================================================
   КАСТОМНЫЙ ПЕРЕКЛЮЧАТЕЛЬ "ТИП ПЛАТЕЛЬЩИКА"
   ========================================================================== */
/* Прячем оригинальный выпадающий список от Битрикса */
.original-payer-type-field {
    display: none;
}
/* Стили для нашего нового переключателя */
.custom-payer-toggle {
    display: flex;
    margin-bottom: 20px;
}
.custom-payer-toggle button {
    flex: 1;
    text-align: center;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 500;
    font-size: 16px;
}
.custom-payer-toggle button:first-of-type {
    border-radius: 8px 0 0 8px;
}
.custom-payer-toggle button:last-of-type {
    border-radius: 0 8px 8px 0;
    margin-left: -1px;
}
.custom-payer-toggle button.active {
    background-color: #ff6600;
    color: #fff;
    border-color: #ff6600;
    z-index: 1;
    position: relative;
}

/* ==========================================================================
   ПОЛЕ ПАРОЛЯ С ИКОНКОЙ
   ========================================================================== */
.password-wrapper {
    position: relative;
}
.password-toggle {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

/* ==========================================================================
   БЛОК С ДАННЫМИ О КОМПАНИИ (DADATA)
   ========================================================================== */
.company-info-result {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 14px;
}
.company-info-result div {
    margin-bottom: 10px;
}
.company-info-result div:last-child {
    margin-bottom: 0;
}
.company-info-result span:first-child {
    font-weight: 500;
    margin-right: 10px;
    color: #777;
}

/* ==========================================================================
   КНОПКА РЕГИСТРАЦИИ
   ========================================================================== */
.btn-submit {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #ff6600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.btn-submit:hover {
    background-color: #e65c00;
}

/* ==========================================================================
   АДАПТИВНОСТЬ: ПЛАНШЕТЫ И ДЕСКТОПЫ (от 601px)
   ========================================================================== */
@media (min-width: 601px) {
    .form-row {
        display: flex;
        gap: 24px;
    }
    .form-group {
        flex: 1;
    }
    .form-group-full {
        width: 100%;
    }
    .form-section:has(#inn-block) .form-group-full,
    .form-section:has(input[name="UF_DELIVERY_ADDRESS"]) .form-group-full {
        max-width: 100%;
    }
    
    .form-section .form-row + .form-group-full {
        max-width: calc(50% - 12px);
    }
}



/* ==========================================================================
   АДАПТИВНОСТЬ: БОЛЬШИЕ ДЕСКТОПЫ (от 1873px)
   ========================================================================== */
@media (min-width: 1873px) {
    .custom-registration-form {
        max-width: 900px;
    }
    .form-section h2 {
        font-size: 22px;
    }
}

/* ==========================================================================
   АДАПТИВНОСТЬ: МОБИЛЬНЫЕ УСТРОЙСТВА (до 600px)
   ========================================================================== */
@media (max-width: 600px) {
    .form-row {
        display: block;
    }
    .form-group {
        width: 100%;
    }
}
/* End */


/* Start:/bitrix/components/bitrix/main.field.enum/templates/main.edit/style.min.css?1763713702640*/
.main-enum-dialog-input{padding:3px 32px 3px 3px;height:auto;min-height:38px;  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI1IDE2Ij4gIDxwb2x5Z29uIGZpbGw9IiM1MzVDNjkiIGZpbGwtcnVsZT0iZXZlbm9kZCIgcG9pbnRzPSIzLjU0NiA3LjQyNSAzLjU0NiAxLjYwNyAxLjYwNyAxLjYwNyAxLjYwNyA4LjM5NCAxLjYwNyA5LjM2NCA5LjM2NCA5LjM2NCA5LjM2NCA3LjQyNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTQ1IDkuOSAxLjY1NykiLz48L3N2Zz4=); background-repeat:no-repeat;background-position:right center;color:#535c69;box-sizing:border-box;-moz-appearance:none;-webkit-appearance:none;appearance:none}
/* End */
/* /bitrix/templates/autosimpo_/components/bitrix/main.register/custom_form/style.css?17641534059040 */
/* /bitrix/components/bitrix/main.field.enum/templates/main.edit/style.min.css?1763713702640 */
