/**
 * Estilos para el sistema de pestañas de login/registro
 */

/* Contenedor principal */
.scfv-tabs-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Navegación de pestañas */
.scfv-tabs-header {
    display: flex;
    margin-bottom: 0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

/* Botones de pestaña */
.scfv-tab-button {
    flex: 1;
    padding: 15px;
    text-align: center;
    background-color: #f8f8f8;
    border: 1px solid #e6e6e6;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scfv-tab-button:first-child {
    border-right: none;
    border-radius: 12px 0 0 0;
}

.scfv-tab-button:last-child {
    border-left: none;
    border-radius: 0 12px 0 0;
}

.scfv-tab-button.active {
    background-color: #fff;
    color: #0073aa;
    border-bottom-color: #fff;
}

.scfv-tab-button i {
    margin-right: 8px;
}

/* Contenedores de contenido */
.scfv-tab-content {
    display: none;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 0 0 12px 12px;
    padding: 30px;
    margin-top: -1px;
}

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

/* Ocultar elementos originales de Woodmart */
#customer_login {
    display: none !important;
}

.woocommerce-account .woocommerce > h2 {
    display: none !important;
}

.wd-login-title {
    display: none !important;
}

/* Estilos específicos para los formularios */
.woocommerce-form-login,
.woocommerce-form-register,
.scfv-registro-form {
    margin: 0 !important;
    max-width: 100% !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Enlaces y botones */
.woocommerce-LostPassword {
    margin-top: 15px;
}

/* Eliminar cualquier borde o sombra adicional */
.woocommerce-form-login {
    border: none !important;
    box-shadow: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .scfv-tab-button {
        padding: 12px 8px;
        font-size: 14px;
    }
    
    .scfv-tab-content {
        padding: 20px 15px;
    }
}
