body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url('img/logoAutosLeo.jpeg') no-repeat center center;
    background-size: contain; 
    background-attachment: fixed; 
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilos para el contenedor */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    /* Fondo semitransparente para el contenedor */
    background-color: rgba(255, 255, 255, 0.8); 
    border: 10px solid transparent; 
    /* border-image: linear-gradient(45deg, black, red) 1;  */
    border-radius: 15px;            
    width: 80%;                      
    max-width: 500px;                
    height: auto;                  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.login-container h2 {
    font-size: 34px;
    text-align: center;
}

#login {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #4285F4; 
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#login:hover {
    background-color: #357AE8;
}

/* Efecto de enfoque (focus) en el botón */
#login:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(66, 133, 244, 0.8);
}
