/* ============================================
   AXIS BANK CONSENT MANAGEMENT - CUSTOM STYLES
   ============================================ */

/* CSS Variables - Design System */
:root {
    /* Primary Colors */
    --axis-maroon: #97144D;
    --axis-maroon-hover: #7a1040;
    --axis-maroon-light: #c91a62;
    /* Secondary Colors */
    --axis-green: #3CB371;
    --axis-green-light: #48d489;
    --axis-teal: #20B2AA;
    --axis-teal-bg: #e8f7f6;
    /* Neutrals */
    --gray-100: #f8f9fa;
    --gray-200: #f5f5f5;
    --gray-300: #e9ecef;
    --gray-400: #dee2e6;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    /* Text Colors */
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #888888;
    --text-light: #999999;
    /* Background Colors */
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-card: #f9f9f9;
    /* Border Colors */
    --border-light: #e0e0e0;
    --border-input: #d9d9d9;
    /* Typography */
    --font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-size-xs: 11px;
    --font-size-sm: 12px;
    --font-size-base: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 32px;
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: "Lato-Regular", sans-serif;
    /*font-family: var(--font-family);*/
    font-size: var(--font-size-base);
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.header-main {
    background-color: var(--axis-maroon);
    padding: 0;
    height: 60px;
}

.header-logo-section {
    background-color: var(--axis-maroon);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    height: 60px;
}

.header-logo {
    height: 36px;
    width: auto;
}

.header-divider {
    width: 2px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 20px;
}

.header-nav-section {
    background-color: var(--bg-white);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    height: 60px;
}

.header-open-text {
    font-size: 26px;
    font-weight: 300;
    color: var(--axis-maroon);
    letter-spacing: 1px;
}

.header-separator {
    color: var(--axis-maroon);
    margin: 0 8px;
    font-size: 20px;
}

.header-title {
    font-size: var(--font-size-base);
    color: var(--axis-maroon);
    font-weight: 400;
}

/* ============================================
   BREADCRUMB STYLES
   ============================================ */
.breadcrumb-section {
    padding: 20px 0 10px;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--axis-maroon);
    text-decoration: underline;
    font-size: var(--font-size-sm);
}

.breadcrumb-item.active {
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--text-muted);
}

.page-title {
    font-size: var(--font-size-3xl);
    font-weight: 400;
    color: var(--text-primary);
    margin: 10px 0 0;
}

/* ============================================
   STEPPER STYLES
   ============================================ */
.stepper-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 100px;
}

#otpSuccess {
    display: none;
    color : green;
    font-weight: bold;
    text-align :center;
    margin-top:10px;
}

.stepper-circle {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

    .stepper-circle.active {
        background-color: var(--axis-maroon);
        color: white;
    }

        .stepper-circle.active::before {
            content: "";
            position: absolute;
            width: 8px;
            height: 8px;
            background-color: white;
            border-radius: var(--radius-full);
        }

    .stepper-circle.completed {
        background-color: var(--axis-green);
        color: white;
    }

        .stepper-circle.completed svg {
            width: 14px;
            height: 14px;
        }

    .stepper-circle.pending {
        background-color: transparent;
        border: 2px solid var(--gray-400);
        color: var(--gray-500);
    }

.stepper-label {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    margin-top: 8px;
    text-align: center;
    max-width: 80px;
    line-height: 1.3;
}

.stepper-line {
    position: absolute;
    top: 14px;
    left: calc(50% + 14px);
    width: calc(100% - 28px);
    height: 2px;
    background-color: var(--gray-300);
    z-index: 1;
}

    .stepper-line.completed {
        background-color: var(--axis-green);
    }

.stepper-step:last-child .stepper-line {
    display: none;
}

/* ============================================
   CONTENT CARD STYLES
   ============================================ */
.content-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.content-card-inner {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
}

.section-title {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-secondary);
  /*  text-transform: uppercase;*/
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
    margin-top: 8px;
}

.forgot-link {
    color: #d81b60;
    text-decoration: none;
    font-size: 13px;
}

    .forgot-link:hover {
        text-decoration: none;
    }

/* ============================================
   FORM STYLES
   ============================================ */
.form-label-custom {
    font-size: var(--font-size-base);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

.form-control-custom {
    border: 1px solid var(--border-input);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: var(--font-size-base);
    color: var(--text-primary);
    background-color: var(--bg-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .form-control-custom:focus {
        border-color: var(--axis-maroon);
        box-shadow: 0 0 0 3px rgba(151, 20, 77, 0.1);
        outline: none;
    }

    .form-control-custom::placeholder {
        color: var(--text-muted);
    }

.form-helper-text {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: var(--spacing-sm);
    line-height: 1.4;
}

/* ============================================
   INFO PANEL STYLES
   ============================================ */
.info-panel {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    background-color: var(--bg-white);
}

.info-panel-title {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.info-panel-text {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

#txthalfOTPDOB[readonly]{
    background-color : #fff !important;
    opacity : 1;
}
#txtDOB[readonly] {
    background-color: #fff !important;
    opacity: 1;
}


.otp-security {
    display: flex;
    ;
    align-items: center;
    gap: 4px;
    font-size: 13.5px;
    /* color: #6c757d;*/
    color: #5f6b7a;
    opacity: 1 !important;
}

.shield-icon{
    width: 16px;
    height: 16px;
    fill : #6c757d;
    margin-top: 1px;

}


.info-panel-subtitle {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.info-panel-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: var(--spacing-md);
}

    .info-panel-list li {
        font-size: var(--font-size-sm);
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: var(--spacing-xs);
    }

/* ============================================
   BUTTON STYLES
   ============================================ */
.btn-primary-custom {
    background-color: var(--axis-maroon);
    border: none;
    border-radius: var(--radius-sm);
    padding: 16px 48px;
    font-size: var(--font-size-md);
    font-weight: 500;
    color: white;
    min-width: 280px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    border-radius: 14px;
}

    .btn-primary-custom:disabled {
        border: none;
        border-radius: var(--radius-sm);
        padding: 16px 48px;
        font-size: var(--font-size-md);
        font-weight: 500;
        min-width: 280px;
        transition: background-color 0.2s ease, transform 0.1s ease;
        border-radius: 14px;
        background-color: #b7b0b0;
        color: #ffffff;
    }

    .btn-primary-custom:hover {
        background-color: var(--axis-maroon-hover);
        color: white;
    }

    .btn-primary-custom:active {
        transform: scale(0.98);
    }

    .btn-primary-custom:focus {
        box-shadow: 0 0 0 3px rgba(151, 20, 77, 0.3);
    }



/* ============================================
   FOOTER BUTTON SECTION
   ============================================ */
.footer-button-section {
    padding: var(--spacing-xl) 0;
    display: flex;
    /*justify-content: flex-end;*/ /* button left aligned*/
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal-otp .modal-content {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-otp .modal-header {
    border-bottom: none;
    padding: var(--spacing-lg) var(--spacing-xl);
    padding-bottom: 0;
}

.modal-otp .modal-title {
    font-size: var(--font-size-2xl);
    font-weight: 500;
    color: var(--text-primary);
}

.modal-otp .modal-body {
    padding: var(--spacing-lg) var(--spacing-xl);
}

.modal-otp .btn-close {
    opacity: 0.5;
}

    .modal-otp .btn-close:hover {
        opacity: 1;
    }

.otp-info-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.otp-phone-number {
    font-weight: 600;
    color: var(--text-primary);
}

/* OTP Input Boxes */
.otp-inputs {
    display: flex;
    gap: 12px;
    margin-bottom: var(--spacing-lg);
}

.otp-input {
    width: 52px;
    height: 52px;
    border: 1px solid var(--border-input);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--text-primary);
    transition: border-color 0.2s ease;
}

    .otp-input:focus {
        border-color: var(--axis-maroon);
        outline: none;
        box-shadow: 0 0 0 3px rgba(151, 20, 77, 0.1);
    }

.otp-resend-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.otp-timer {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.otp-timer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 4px 8px;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-left: var(--spacing-sm);
}

.otp-resend-link {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
}

    .otp-resend-link:hover {
        color: var(--axis-maroon);
    }

    .otp-resend-link.disabled {
        opacity: 0.5;
        pointer-events: none;
    }

/* ============================================
   CONSENT CHANNEL STYLES
   ============================================ */
.consent-channel-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    margin-bottom: var(--spacing-sm);
    max-width: 340px;
}

.consent-channel-label {
    font-size: var(--font-size-base);
    color: var(--text-primary);
    font-weight: 400;
}

.consent-radio-group {
    display: flex;
    gap: var(--spacing-lg);
}

/* Custom Radio Buttons */
.radio-custom {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
}

    .radio-custom input[type="radio"] {
        display: none;
    }

    .radio-custom .radio-circle {
        width: 20px;
        height: 20px;
        border: 2px solid var(--gray-400);
        border-radius: var(--radius-full);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color 0.2s ease;
    }

    .radio-custom input[type="radio"]:checked + .radio-circle {
        border-color: var(--axis-maroon);
    }

        .radio-custom input[type="radio"]:checked + .radio-circle::after {
            content: "";
            width: 10px;
            height: 10px;
            background-color: var(--axis-maroon);
            border-radius: var(--radius-full);
        }

    .radio-custom .radio-label {
        font-size: var(--font-size-sm);
        color: var(--text-secondary);
    }

/* ============================================
   AUTHENTICATION TAB STYLES
   ============================================ */
.auth-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-light);
}

.auth-back-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

    .auth-back-btn:hover {
        color: var(--axis-maroon);
    }

.auth-title {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

/* Auth Method Tabs */
.auth-tabs {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.auth-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background-color: var(--bg-white);
    cursor: pointer;
    min-width: 150px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

    .auth-tab:hover {
        border-color: var(--axis-maroon);
    }

    .auth-tab.active {
        border-color: var(--axis-maroon);
        background-color: var(--bg-white);
    }

.auth-tab-label {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-tab-radio {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-400);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-tab.active .auth-tab-radio {
    border-color: var(--axis-maroon);
}

    .auth-tab.active .auth-tab-radio::after {
        content: "";
        width: 10px;
        height: 10px;
        background-color: var(--axis-maroon);
        border-radius: var(--radius-full);
    }

/* Auth Form Section */
.auth-form-section {
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-light);
}

.auth-form-row {
    display: flex;
    gap: var(--spacing-lg);
}

.auth-form-group {
    margin-bottom: var(--spacing-lg);
}

    .auth-form-group.half-width {
        width: 200px;
    }

/* ============================================
   CHECKBOX STYLES
   ============================================ */
.checkbox-custom {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    margin-bottom: var(--spacing-sm);
}

    .checkbox-custom input[type="checkbox"] {
        display: none;
    }

    .checkbox-custom .checkbox-box {
        width: 18px;
        height: 18px;
        min-width: 18px;
        border: 2px solid var(--gray-400);
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        margin-top: 2px;
    }

#hiddenDate {
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    opacity: 0;
    pointer-events: none;
}


    .checkbox-custom input[type="checkbox"]:checked + .checkbox-box {
        background-color: var(--axis-maroon);
        border-color: var(--axis-maroon);
    }

        .checkbox-custom input[type="checkbox"]:checked + .checkbox-box svg {
            display: block;
        }

    .checkbox-custom .checkbox-box svg {
        display: none;
        width: 12px;
        height: 12px;
        color: white;
    }

    .checkbox-custom .checkbox-label {
        font-size: var(--font-size-sm);
        color: var(--text-secondary);
        line-height: 1.4;
    }

/* ============================================
   EMAIL AUTH SECTION
   ============================================ */
.email-auth-header {
    margin-bottom: var(--spacing-lg);
}

.email-auth-title {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.email-auth-subtitle {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* ============================================
   SUCCESS PAGE STYLES
   ============================================ */
.success-container {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-lg);
}

.success-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-xl);
    position: relative;
}

.success-icon-outer {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--axis-teal-bg) 0%, rgba(32, 178, 170, 0.2) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon-inner {
    width: 80px;
    height: 80px;
    background-color: var(--axis-teal);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .success-icon-inner svg {
        width: 40px;
        height: 40px;
        color: white;
    }

.success-title {
    font-size: var(--font-size-2xl);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.4;
}

.success-options {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.success-option {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.success-option-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

    .success-option-icon svg {
        width: 20px;
        height: 20px;
    }

.success-option-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.5;
}

    .success-option-text a {
        color: var(--axis-maroon);
        text-decoration: none;
        font-weight: 500;
    }

        .success-option-text a:hover {
            text-decoration: underline;
        }

/* ============================================
   DATE INPUT WITH ICON
   ============================================ */
.input-with-icon {
    position: relative;
}

    .input-with-icon .form-control-custom {
        padding-right: 45px;
    }

.input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

    .input-icon svg {
        width: 20px;
        height: 20px;
    }

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199.98px) {
    .content-card {
        padding: var(--spacing-lg);
    }

    .content-card-inner {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 991.98px) {
    .stepper-container {
        justify-content: center;
        margin-top: var(--spacing-lg);
    }

    .page-title {
        font-size: var(--font-size-2xl);
    }

    .auth-tabs {
        flex-wrap: wrap;
    }

    .auth-tab {
        min-width: 140px;
    }

    .info-panel {
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 767.98px) {
    .header-logo-section {
        padding: 10px 16px;
    }

    .header-nav-section {
        padding: 10px 16px;
    }

    .header-open-text {
        font-size: 20px;
    }

    .breadcrumb-section {
        padding: 15px 0 10px;
    }

    .page-title {
        font-size: var(--font-size-xl);
    }

    .stepper-container {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .stepper-step {
        min-width: 80px;
    }

    .stepper-label {
        font-size: 10px;
    }

    .content-card {
        padding: var(--spacing-md);
        margin-top: var(--spacing-md);
    }

    .content-card-inner {
        padding: var(--spacing-md);
    }

    .section-title {
        font-size: var(--font-size-lg);
    }

    .btn-primary-custom {
        width: 100%;
        min-width: unset;
    }

    .footer-button-section {
        justify-content: center;
    }

    .otp-inputs {
        gap: 8px;
    }

    .otp-input {
        width: 44px;
        height: 44px;
        font-size: var(--font-size-md);
    }

    .auth-tabs {
        flex-direction: column;
    }

    .auth-tab {
        width: 100%;
    }

    .auth-form-row {
        flex-direction: column;
        gap: 0;
    }

    .auth-form-group.half-width {
        width: 100%;
    }

    .consent-channel-item {
        max-width: 100%;
    }

    .success-title {
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 575.98px) {
    .header-divider {
        margin: 0 10px;
    }

    .header-open-text {
        font-size: 18px;
    }

    .header-title {
        font-size: var(--font-size-sm);
    }

    .stepper-line {
        display: none;
    }

    .modal-otp .modal-content {
        margin: 10px;
    }
}


/*
loader
*/

.page-loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255,255,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

body.loader_active .page-loader {
    display: flex;
}


body.loader_active {
    overflow: hidden;
}

.page-loader img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    padding: 8px;
}


/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-axis-maroon {
    color: var(--axis-maroon) !important;
}

.bg-axis-maroon {
    background-color: var(--axis-maroon) !important;
}

.border-axis-maroon {
    border-color: var(--axis-maroon) !important;
}

.info-icon {
    display: inline-block;
    width: 20px;
    height: 21px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    color: #6c757d;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    border-color: #6c757d;
    border: 2px solid;
}

/*ShowReqAuth css:*/
/*.auth-form-content {
    display: none;
}

    .auth-form-content.active {
        display: block;
    }

.auth-tab {
    cursor: pointer;
}

    .auth-tab.active {
        outline: 2px solid #2962ff;
        border-radius: 6px;
    }*/
