html,
body {
      height: 100%;
    }

body {
      margin: 0;
      padding: 0;
      /* Fondo con la imagen de pan */
      background: url('/static/img/fondo.png') no-repeat center center fixed;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

.login-overlay {
      background-color: rgba(255, 255, 255, 0.85);
      border-radius: 1rem;
      box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
      max-width: 420px;
      width: 100%;
      padding: 2.5rem 2rem;
    }

.login-logo {
      height: 60px;
    }

.login-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-top: 0.75rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }