/* Auth Modal Tabs */
.auth-tabs {
    display: flex;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 20px;
}

.auth-tab {
    flex: 1;
    padding: 12px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #3b4151;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.auth-tab:hover {
    color: #49cc90;
}

.auth-tab.active {
    color: #49cc90;
    border-bottom-color: #49cc90;
}

.auth-tab-content {
    display: none;
}

.auth-tab-content.active {
    display: block;
}
