
/* ===== AUTH TABS ===== */
.ce-v6-auth-tabs {
    display: flex;
    background: #f1f5f9; /* Light grey background */
    border-radius: 999px; /* Pill shape */
    padding: 6px;
    margin-bottom: 2rem;
    border: none;
}

.ce-v6-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ce-v6-tab-btn:hover {
    color: #0f172a;
}

.ce-v6-tab-btn.active {
    background: #ffffff;
    color: #6b46c1; /* Primary purple */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* ===== TAB CONTENT ===== */
.ce-v6-tab-content {
    position: relative;
    min-height: auto; /* Let content define height */
}

.ce-v6-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.ce-v6-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
