/* css/style_login.css */

/* Importar fuente (opcional) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Reseteo básico y configuración general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212; /* Fondo oscuro principal */
    color: #e0e0e0; /* Color de texto principal claro */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Asegura que ocupe toda la altura */
    /* Permitir scroll vertical si el contenido es muy alto en móvil */
    overflow-x: hidden;
}

.login-container {
    display: flex;
    width: 95%; /* Usar porcentaje para flexibilidad */
    max-width: 1100px; /* Ancho máximo del contenedor */
    min-height: 600px; /* Altura mínima */
    background-color: #1e1e1e; /* Fondo oscuro secundario */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden; /* Para que el border-radius afecte a las imágenes */
    margin: 20px 0; /* Añadir margen vertical */
}

/* --- Sección Izquierda (Imagen) --- */
.image-section {
    flex: 1 1 50%; /* Flex-grow, flex-shrink, flex-basis */
    background-color: #000; /* Fondo si no hay imagen o mientras carga */
    overflow: hidden; /* Asegura que la imagen no se salga */
    min-height: 600px; /* Asegurar altura mínima para este lado */
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cubre el espacio manteniendo la proporción */
    display: block; /* Elimina espacio extra debajo de la imagen */
}

/* --- Sección Derecha (Formulario) --- */
.form-section {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 40px; /* Ajuste padding */
    min-height: 600px; /* Asegurar altura mínima para este lado también */
}

.form-wrapper {
    width: 100%;
    max-width: 380px; /* Ancho máximo del formulario */
    text-align: center;
}

/* Estilo mensaje error */
.login-error-message {
    color: #dc3545; /* Rojo Bootstrap para errores */
    background-color: #f8d7da; /* Fondo rosa pálido */
    border: 1px solid #f5c6cb; /* Borde rojo claro */
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 8px; /* Bordes redondeados */
    text-align: left; /* Alinear texto a la izquierda */
    font-size: 0.9em;
}


.form-wrapper h2 {
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 2.2em;
}

.form-wrapper .subtitle {
    color: #a0a0a0;
    margin-bottom: 30px;
    font-size: 0.95em;
}

/* Grupos de Input (Label + Input) */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #b0b0b0;
    font-size: 0.9em;
    font-weight: 400;
}

.input-group input[type="text"],
.input-group input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    background-color: #2a2a2a; /* Fondo oscuro para inputs */
    border: 1px solid #444; /* Borde sutil */
    border-radius: 8px;
    color: #e0e0e0; /* Texto claro */
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input[type="text"]:focus,
.input-group input[type="password"]:focus {
    outline: none;
    border-color: #007bff; /* Color de resaltado al enfocar */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.input-group input::placeholder {
    color: #666;
}

/* Opciones (Recordarme, Olvidé contraseña) */
.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.85em;
    flex-wrap: wrap; /* Permitir que los elementos pasen a la siguiente línea si no caben */
    gap: 5px; /* Pequeño espacio si hacen wrap */
}

.options .remember-me {
    display: flex;
    align-items: center;
    color: #b0b0b0;
    cursor: pointer;
}

.options .remember-me input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #007bff; /* Color del check */
}

.options .forgot-password {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.options .forgot-password:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Botón de Login */
.btn-login {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #007bff, #0056b3); /* Gradiente moderno */
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
    margin-bottom: 30px;
}

.btn-login:hover {
    opacity: 0.9;
}
.btn-login:active {
    transform: scale(0.98); /* Efecto al pulsar */
}

/* Sección de Login Social / Contacto */
.social-login {
    margin-bottom: 30px;
}

.social-text {
    color: #a0a0a0;
    margin-bottom: 20px;
    font-size: 0.9em;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-text::before,
.social-text::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #444;
    margin: 0 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Espacio entre iconos */
    flex-wrap: wrap; /* Permitir wrap si no caben en una línea */
}

.social-icon {
    display: inline-flex; /* Para centrar icono dentro */
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid #444;
    border-radius: 50%;
    color: #b0b0b0;
    font-size: 1.2em;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Colores hover específicos */
.social-icon.facebook:hover { background-color: #3b5998; color: white; border-color: #3b5998; }
.social-icon.linkedin:hover { background-color: #0077b5; color: white; border-color: #0077b5; }
.social-icon.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); color: white; border-color: transparent;}
.social-icon.whatsapp:hover { background-color: #25D366; color: white; border-color: #25D366; }


/* Enlace de Registro */
.signup-link {
    font-size: 0.9em;
    color: #a0a0a0;
}

.signup-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* --- Media Queries para Responsividad --- */

/* Tablets y pantallas más pequeñas */
@media (max-width: 900px) {
    .login-container {
        flex-direction: column;
        width: 90%; /* Más ancho relativo en tablets */
        max-width: 500px; /* Limitar ancho máximo */
        min-height: auto; /* Altura basada en contenido */
        margin: 30px auto; /* Centrar y añadir margen arriba/abajo */
    }

    .image-section {
       display: none; /* Ocultar la imagen en vertical */
    }

    .form-section {
        padding: 40px 30px; /* Ajustar padding */
        min-height: auto; /* Altura basada en contenido */
    }
    .form-wrapper {
        max-width: none; /* Ocupa todo el ancho del contenedor padre */
    }
}

/* Móviles */
@media (max-width: 576px) {
    .login-container {
        width: 100%; /* Ocupar todo el ancho */
        margin: 0; /* Sin margen horizontal */
        border-radius: 0; /* Quitar bordes redondeados */
        min-height: 100vh; /* Asegurar que ocupe toda la altura */
    }
    .form-section {
        padding: 30px 20px; /* Menos padding en móviles */
    }
    .form-wrapper h2 {
        font-size: 1.8em; /* Título más pequeño */
    }
     .options {
        flex-direction: column; /* Apilar opciones */
        align-items: flex-start;
        gap: 10px;
    }
     .options .forgot-password {
        align-self: flex-end; /* Mover "¿Olvidaste...?" a la derecha */
     }
    .social-icons {
        gap: 10px; /* Menos espacio entre iconos */
    }
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
    }
}