.ba-overlay{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9998;
}

.ba-modal{
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.98);
  width: min(860px, 92vw);
  background: #0b2732;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 80px rgba(0,0,0,.45);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 9999;
}

.ba-modal.is-open{ opacity: 1; pointer-events: auto; transform: translate(-50%,-50%) scale(1); }
.ba-overlay.is-open{ opacity: 1; pointer-events: auto; }

.ba-close{
  position: absolute;
  right: 14px; top: 10px;
  border: 0; background: transparent; color: rgba(255,255,255,.9);
  font-size: 30px; line-height: 1;
  cursor: pointer;
}

.ba-box{ padding: 26px 26px 22px; }
.ba-kicker{ font-weight: 800; letter-spacing: .5px; color: #ffb000; text-transform: uppercase; }
.ba-title{ margin: 10px 0 6px; font-size: 28px; }
.ba-sub{ color: rgba(255,255,255,.85); max-width: 60ch; }

.ba-form{
  margin-top: 18px;
  display: flex; gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
}
.ba-input{
  border: 0; outline: 0;
  width: 100%;
  font-size: 16px;
}
.ba-go{
  border: 0;
  background: #0b2732;
  color: #fff;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 20px;
  cursor: pointer;
}

.ba-foot{
  margin-top: 14px;
  display:flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}
.ba-link{ color: rgba(255,255,255,.85); text-decoration: underline; }
.ba-nomore input{ margin-right: 8px; }
