/* Importar fuentes de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
body {
    display: flex;
    flex-direction: column; /* Coloca los elementos hijos en una columna */
}



/* A partir de aquí, puedes agregar tus estilos del login */
/* (Tus estilos existentes del login van aquí) */

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f2f5 0%, #e0e5ec 100%);
    color: #333;
}

.login-container {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.login-header h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.login-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.login-image {
    flex: 1 1 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.login-form-wrapper {
    flex: 2 1 350px;
    background-color: #f9fbfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.login-form-wrapper h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #34495e;
    margin-bottom: 25px;
    font-weight: 500;
}

.login-form .input-group {
    margin-bottom: 20px;
    text-align: left;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 0.95em;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
}

.login-form button {
    background-color: #007bff;
    color: white;
    padding: 14px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.login-form button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.forgot-password {
    display: block;
    margin-top: 20px;
    color: #007bff;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Regla para dispositivos móviles */
@media (max-width: 768px) {
    /* Oculta el contenedor de la segunda imagen */
    .login-image.right-image {
        display: none;
    }
}
