
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center;     /* Centrado vertical */
    
  /* --- FONDOOOOOO--- */
    
    background-image: url('../img/FondoLav.png'); 
    
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
}

/* Panel flotante */
.login-container {
    width: 90%;
    max-width: 850px;
    height: 500px;
    background-color: white;
    display: flex;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* Lado Izquierdo */
.login-left {
    width: 50%;
    background-color: #026bdc;
    background: linear-gradient(135deg, #3382f7 0%, #3375b7 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
}

.login-left h2 {
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-img {
    width: 180px;
    height: auto;
    margin: 20px 0;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Lado Derecho */
.login-right {
    width: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form {
    width: 80%;
    max-width: 300px;
    text-align: center;
}

.user-icon {
    font-size: 60px;
    color: #036fe2;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 25px;
    background-color: #f7f9fc;
    text-align: center;
    box-sizing: border-box;
}

.btn-ingresar {
    background-color: #007fe6;
    color: white;
    padding: 12px 0;
    border: none;
    border-radius: 25px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-ingresar:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}