

/* Start:/auth/css/style.css?17774513273590*/
/* ============================================
   СОВРЕМЕННЫЙ ДИЗАЙН СТРАНИЦЫ АВТОРИЗАЦИИ
   ============================================ */

.auth-modern-page {
    min-height: calc(100vh - 200px);
    /*background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);*/
    padding: 2rem 0;
}

/* Основная карточка */
.auth-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.auth-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Заголовок с табами */
.auth-card__header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 2rem 0;
}

.auth-tabs {
    border-bottom: none !important;
}

.auth-tabs__item {
    flex: 1;
}

.auth-tabs__link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem !important;
    text-decoration: none;
    color: #6c757d !important;
    font-weight: 500;
    font-size: 1rem;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent !important;
}

.auth-tabs__link:hover {
    color: #f79322 !important;
    background: rgba(247, 147, 34, 0.05) !important;
    border-color: transparent !important;
}

.auth-tabs__link.active {
    color: #f79322 !important;
    border-bottom-color: #f79322 !important;
    background: rgba(247, 147, 34, 0.05) !important;
}

.auth-tabs__icon {
    font-size: 1.25rem;
}

.auth-tabs__text {
    font-size: 1rem;
}

/* Тело карточки */
.auth-card__body {
    padding: 2.5rem;
}

.auth-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* Интро для регистрации */
.registration-intro {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.registration-intro__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.registration-intro__text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .auth-card__header {
        padding: 0.75rem 1rem 0;
    }

    .auth-card__body {
        padding: 1.5rem;
    }

    .auth-tabs__link {
        flex-direction: column;
        padding: 0.75rem 0.5rem !important;
        gap: 0.25rem;
    }

    .auth-tabs__icon {
        font-size: 1.5rem;
    }

    .auth-tabs__text {
        font-size: 0.85rem;
    }

    .registration-intro__title {
        font-size: 1.25rem;
    }

    .registration-intro__text {
        font-size: 0.9rem;
    }
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-card {
    animation: fadeInUp 0.6s ease;
}

.auth-form .btn-danger {
    background-color: #eb202a;
    border-color: #eb202a;
    font-weight: 600;
}
.auth-form .btn-danger:hover {
    background-color: #c41e24;
    border-color: #b71b21;
}
.auth-form .form-control:focus {
    border-color: #f79322;
    box-shadow: 0 0 0 0.2rem rgba(247,147,34,0.25);
}
/* End */


/* Start:/bitrix/templates/dn2020/components/bitrix/system.auth.form/custom26/style.css?1777013889323*/
.auth-form .btn-danger {
    background-color: #eb202a;
    border-color: #eb202a;
    font-weight: 600;
}
.auth-form .btn-danger:hover {
    background-color: #c41e24;
    border-color: #b71b21;
}
.auth-form .form-control:focus {
    border-color: #f79322;
    box-shadow: 0 0 0 0.2rem rgba(247,147,34,0.25);
}
/* End */


/* Start:/bitrix/templates/dn2020/components/bitrix/main.register/slider/style.css?17823758304910*/
/* ===== Общие ===== */
.auth-form .is-invalid {
    border-color: #dc3545 !important;
    background-image: none;
}
.auth-form .invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
.region-search-input {
    margin-bottom: 8px;
}
.btn-outline-secondary {
    border-color: #ced4da;
}
select[multiple] {
    min-height: 100px;
}

/* ===== Слайдер ===== */
.step-container {
    display: none !important;
    animation: fadeSlide 0.4s ease forwards;
}
.step-container.active {
    display: block !important;
}

@keyframes fadeSlide {
    0% { opacity: 0; transform: translateX(20px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Индикаторы шагов */
.step-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0 0 30px 0;
    padding: 10px 0;
}
.step-indicators .dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.step-indicators .dot.active {
    background: #d32f2f;
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.25);
}
.step-indicators .dot.done {
    background: #388e3c;
}
.step-indicators .dot:not(.active):not(.done):hover {
    background: #bdbdbd;
    transform: scale(1.1);
}
/* Соединительные линии между точками */
.step-indicators .dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 20px;
    height: 2px;
    background: #e0e0e0;
    transform: translateY(-50%);
    transition: background 0.3s ease;
}
.step-indicators .dot:last-child::after {
    display: none;
}
.step-indicators .dot.done::after {
    background: #388e3c;
}
.step-indicators .dot.active::after {
    background: #d32f2f;
}

/* Навигационные кнопки */
.step-nav-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.step-nav-buttons .btn-prev {
    order: 1;
    min-width: 120px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    transition: all 0.3s ease;
}
.step-nav-buttons .btn-prev:hover:not(:disabled) {
    background: #e0e0e0;
    border-color: #bbb;
}
.step-nav-buttons .btn-prev:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.step-nav-buttons .btn-next,
.step-nav-buttons .btn-submit {
    order: 2;
    min-width: 140px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.35);
    transition: all 0.3s ease;
}
.step-nav-buttons .btn-next:hover,
.step-nav-buttons .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.45);
}
.step-nav-buttons .btn-next:active,
.step-nav-buttons .btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}
.step-nav-buttons .btn-submit {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.35);
}
.step-nav-buttons .btn-submit:hover {
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.45);
}

/* Поля ввода – более современные */
.auth-form .form-control-lg {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.auth-form .form-control-lg:focus {
    border-color: #d32f2f;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.15);
}
.auth-form .form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}
.auth-form .form-text {
    color: #6c757d;
    font-size: 0.85rem;
}
.auth-form .alert-info {
    background: #e8f5e9 !important;
    border-left: 4px solid #2e7d32;
    border-radius: 8px;
    padding: 1.25rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .step-nav-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    .step-nav-buttons .btn-prev,
    .step-nav-buttons .btn-next,
    .step-nav-buttons .btn-submit {
        min-width: 100%;
        order: unset;
    }
    .step-nav-buttons .btn-prev {
        order: 1;
    }
    .step-nav-buttons .btn-next,
    .step-nav-buttons .btn-submit {
        order: 2;
    }
    .step-indicators .dot {
        width: 12px;
        height: 12px;
    }
    .step-indicators .dot::after {
        width: 12px;
    }
    .auth-form .form-control-lg {
        font-size: 1rem;
        padding: 0.65rem 0.9rem;
    }
}
/* End */
/* /auth/css/style.css?17774513273590 */
/* /bitrix/templates/dn2020/components/bitrix/system.auth.form/custom26/style.css?1777013889323 */
/* /bitrix/templates/dn2020/components/bitrix/main.register/slider/style.css?17823758304910 */
