/* --- ESTILOS GENERALES Y RESETS --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    /* Asegura que el contenedor ocupe toda la pantalla */
    height: 100vh; 
    overflow: hidden; /* Evita barras de desplazamiento */
    background-color: #f0f4f8;
}

/* --- CONTENEDOR PRINCIPAL (SPLIT SCREEN) --- */
.split-container {
    display: flex; /* Habilita Flexbox */
    height: 100%;
    width: 100%;
}

/* Estilo base para ambas secciones */
.section {
    /* Ambas ocupan el 50% del ancho */
    flex: 1; 
    /* Centra el contenido dentro de cada sección */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

/* --- SECCIÓN DE LOGIN (Izquierda) --- */
.login-section {
    background-color: #ffffff;
}

.login-content {
    width: 100%;
    max-width: 350px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.login-content h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

/* Estilo de los campos de entrada */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background-color: #ff0000; /* Azul primario */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #ff0000;
}

.forgot-link {
    text-align: center;
    margin-top: 15px;
}

.forgot-link a {
    color: #ed1e1e;
    text-decoration: none;
}


/* --- SECCIÓN SOBRE NOSOTROS (Derecha) --- */
.about-section {
    /* Color de fondo contrastante */
    background-color: #c81313; 
    color: white;
    /* Puedes añadir una imagen de fondo aquí si quieres */
    /* background-image: url('tu-imagen.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
    text-align: center;
}

.about-content {
    max-width: 400px;
}

.about-content h2 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-content h3 {
    margin-top: 30px;
    font-weight: 500;
}

.about-content p {
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.info-button {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.info-button:hover {
    background-color: white;
    color: #a33c3c;
}