 
/* ==========================================================================
   ESTILOS PARA EL FONDO DE PÁGINA
   ========================================================================== */

/* --- CÓDIGO DE DEPURACIÓN TEMPORAL --- */
/* Pinta todos los pseudo-elementos para encontrar al que molesta */


body {
    background-image: url('../img/banner1.png');
    
    background-size: cover;
    
    background-position: center;
    
    /* Evita que la imagen se repita en mosaico */
    background-repeat: no-repeat;
    
    /* Fija la imagen para que no se mueva al hacer scroll (efecto parallax) */
    background-attachment: scroll;
    
    /* Asegura que el body ocupe al menos el 100% de la altura de la ventana */
    min-height: 100vh;
    
    /* Color de fondo de respaldo por si la imagen tarda en cargar */
    background-color: #f0f0f0; 
}

/* El resto de tu código CSS va aquí abajo... */

    /* Contenedor principal */
        .container {
            display: flex;
            width: 100%;
            max-width: 1200px;
            gap: 40px;
            position: relative;
            z-index: 1;
            align-items: center;
            margin-top: 90px;
            margin-bottom: 30px;
            background-image: url('auths/img/banner1.png');
            background-size: cover;
            background-position: center;
             /* Agregar imagen de fondo */
 
        }

        /* Sección izquierda */
       .left-section {
    flex: 1;
    color: #333; /* Un gris oscuro para mejor contraste */
    background-color: #704de2; /* <-- NUEVO: Fondo morado claro */
    padding: 40px; /* <-- NUEVO: Espacio interior */
    border-radius: 20px; /* <-- NUEVO: Bordes redondeados para que coincidan con el formulario */
    min-width: 0;
}

        .left-section h1 {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #e0e0e0;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            animation: fadeInLeft 0.8s ease;
        }

        .left-section p {
            font-size: 1.2rem;
            font-weight: 600;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInLeft 1s ease;
            color: #e0e0e0;

        }

        /* Sección derecha - Formulario */
        .right-section {
            flex: 1;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            animation: slideInRight 0.8s ease;
            min-width: 0;
            position: relative;
            z-index: 100;
        }

        /* Botones de redes sociales */
        .social-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 30px;
        }

        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 20px;
            border: 2px solid #e0e0e0;
            background: #f8f8f8;
            border-radius: 8px;
            color: #666;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            gap: 10px;
        }

        .social-btn:hover {
            border-color: #999;
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .social-btn i {
            font-size: 1.2rem;
        }

        .social-btn.google { color: #db4437; }
        .social-btn.apple { color: #000; }
        .social-btn.facebook { color: #1877f2; }

        /* Divisor */
        .divider {
            display: flex;
            align-items: center;
            margin: 25px 0;
            gap: 10px;
            color: #999;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e0e0e0;
        }

        .divider span {
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* Formulario */
        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8f8f8;
        }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.2);
        }

        /* Botón submit */
        .submit-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Animaciones */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                gap: 30px;
            }

            .left-section h1 {
                font-size: 2.5rem;
            }

            .right-section {
                padding: 35px;
            }
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                gap: 40px;
            }

            .left-section h1 {
                font-size: 2rem;
                text-align: center;
            }

            .left-section p {
                text-align: center;
                font-size: 1rem;
            }

            .right-section {
                width: 100%;
                max-width: 500px;
                padding: 30px 25px;
            }

            .social-btn {
                font-size: 0.9rem;
                padding: 10px 15px;
            }
        }

        @media (max-width: 480px) {
           

            .container {
                gap: 30px;
            }

            .left-section h1 {
                font-size: 1.5rem;
            }

            .left-section p {
                font-size: 0.9rem;
            }

            .right-section {
                padding: 20px 15px;
                border-radius: 15px;
            }

            .social-btn {
                font-size: 0.85rem;
                padding: 10px 12px;
                gap: 8px;
            }

            .form-group input {
                font-size: 16px; /* Evita zoom en iOS */
            }

            .submit-btn {
                padding: 12px;
                font-size: 0.95rem;
            }
        }
