    body {
      font-family: 'Open Sans', sans-serif;
      background-image: url('../images/ECLZQ_noche.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-color: #f5f5f5;

      margin: 0;
      width: 100%;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      /* inicia desde arriba */
      align-items: center;

      padding-top: 80px;
      /* ajusta la distancia desde arriba */
      text-align: center;
    }



    .button-group {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 15px;
    }

    .card {
      border-radius: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
      background-color: #fff;
      color: #0074d8;
    }

    .card-header {
      background-color: #0074d8 !important;
      color: #fff;
      border-bottom: none;
      border-radius: 20px 20px 0 0;
    }

    /* Botón Entrar centrado azul oscuro 1E3A8A  verde 10B981  era 0074d8  */
    .btn-enter {
      background-color: #0074d8;
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 10px 30px;
      /* ancho según contenido */
      transition: 0.3s;
    }


    .btn-enter:hover {
      background-color: #1E3A8A;
      color: #fff;
    }

    /* Enlaces debajo del botón */
    .login-links {
      display: flex;
      justify-content: space-between;
      margin-top: 10px;
      width: 100%;
    }

    .login-links a {
      color: #0074d8;
      text-decoration: none;
    }

    .login-links a:hover {
      color: #1E3A8A;
    }
