.auth-tabs-nav {
    padding: 0;
    background: transparent;
    position: relative;
}

.modern-tabs {
    display: flex;
    gap: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid #dee2e6;
    box-shadow: none;
}

.modern-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #6c757d;
    font-weight: 500;
    position: relative;
    margin-bottom: -1px;
}

.modern-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--main-color-one, #007bff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.modern-tab.active::after {
    transform: scaleX(1);
}

.modern-tab.active {
    color: var(--main-color-one, #007bff);
    background: transparent;
    box-shadow: none;
}

.tab-icon {
    margin-bottom: 0.5rem;
}

.tab-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.tab-subtitle {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Form Container */
.auth-form {
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .auth {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .auth-form {
        border-radius: 0.5rem;
    }

    .modern-tab {
        padding: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .auth-logo {
        margin-bottom: 1rem;
    }

    .auth-form-title h2 {
        font-size: 1.1rem;
        margin: 0.5rem 0;
    }

    .loginTermsDesc {
        font-size: 0.75rem;
    }
}

/* Height Management */
.content {
    min-height: calc(100vh - (header_height + footer_height));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Form Elements */
.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.btn {
    border-radius: 0.5rem;
    font-weight: 500;
}

.errorlist {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}


/* Animated gradient background */

/* Remove all previous styles and replace with: */
