body {
    margin: 0;
    font-family: 'Arial', sans-serif; /* Ajusta la fuente si es necesario */
}

.login-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://picsum.photos/1920/1080?city'); /* Imagen de fondo: ciudad aleatoria de Picsum */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden; /* Para asegurar que la imagen no desborde */
}

.login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Superposición oscura semitransparente */
    z-index: 1;
}

.login-card-container {
    position: relative;
    z-index: 2; /* Para que la tarjeta esté por encima del overlay */
    max-width: 900px; /* Ajusta el ancho máximo de la tarjeta */
    width: 90%; /* Ancho responsivo */
}

.login-card {
    border-radius: 1rem; /* Bordes más redondeados */
    background-color: rgba(255, 255, 255, 0.95); /* Fondo de tarjeta ligeramente transparente */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */
}

.login-card .card-body {
    padding: 2rem;
}

.login-left-panel {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Degradado de Bootstrap primary */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    padding: 3rem;
}

.login-right-panel {
    padding: 3rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .login-left-panel {
        border-bottom-left-radius: 0;
        border-top-right-radius: 1rem;
    }
}

/* Estilos para la información de contacto */
.login-left-panel .contact-info {
    margin-top: 2rem; /* Ajusta este valor para mover el texto más abajo */
    font-size: 0.9rem; /* Letra más pequeña */
}

.login-left-panel .contact-info p {
    margin-bottom: 0.5rem; /* Espaciado entre líneas si hay varias */
}