 .boton-ingresar {
  background-color: #003a78; /* Azul oscuro */
  color: white;
  border: none;
  border-bottom: 2px solid #003a78; /* Rojo para destacar */
  padding: 12px 24px;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  cursor: pointer;
}
 .overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }

  .modal {
      background: #fff;
      padding: 30px;
      border-radius: 20px;
      width: 400px;
      max-width: 90%;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      position: relative;
      text-align: center;
    }

    .modal .close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 22px;
      font-weight: bold;
      color: #888;
      cursor: pointer;
    }

    .modal img.icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-bottom: 10px;
    }

    .modal h2 {
      color: #11365e;
      font-size: 18px;
      margin: 10px 0;
    }

    .modal p {
      font-size: 14px;
      color: #555;
      margin: 8px 0;
    }

    .modal a {
      color: #0072ff;
      font-weight: bold;
      font-size: 14px;
      display: inline-block;
      margin: 8px 0;
      text-decoration: none;
    }

    .modal label {
      display: flex;
      align-items: center;
      margin: 15px 0;
      font-size: 13px;
      justify-content: center;
    }

    .modal input[type="checkbox"] {
      margin-right: 8px;
      width: 16px;
      height: 16px;
    }

    .modal button.autorizar {
      background-color: #8bc34a;
      color: white;
      border: none;
      border-radius: 6px;
      padding: 10px 25px;
      font-size: 15px;
      cursor: pointer;
    }