/* Estilos generales para la página */
body {
    margin: 0;
    padding: 0;
    background: url('../images/background.png') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
  }
  
  /* Caja central para el contenido */
  .container {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  /* Estilos para el logo */
  .logo {
    margin-bottom: 20px;
  }
  
  .logo img {
    max-width: 200px;
    height: auto;
  }
  
  /* Estilos para el botón de ingreso */
  .btn {
    background-color: #4285F4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  
  .btn:hover {
    background-color: #357ae8;
  }
  
  /* Estilos para el icono de Google con fondo blanco */
  .google-icon {
    background: #ffffff;
    border-radius: 50%;
    padding: 2px;
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
  
  /* Estilos para el footer */
  footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
  }
  