.gr-nl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.gr-nl__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.gr-nl__title {
  margin: 0.2rem 0 0;
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.gr-nl__subtitle,
.gr-nl__hint {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}
.gr-nl__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.gr-nl__form[hidden],
.gr-nl__form.is-hidden,
.gr-nl__success[hidden],
.gr-nl__success.is-hidden,
.gr-nl__msg[hidden] {
  display: none !important;
}
.gr-nl__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.gr-nl__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
}
.gr-nl__field span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}
.gr-nl__field input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  font-family: inherit;
}
.gr-nl__field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.gr-nl__field input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 1px;
  border-color: rgba(255, 255, 255, 0.45);
}
.gr-nl__btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #0a1a2e;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.gr-nl__btn:hover {
  transform: translateY(-1px);
}
.gr-nl__btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
.gr-nl__linkbtn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  padding: 0;
  align-self: flex-start;
}
.gr-nl__msg {
  margin: 0;
  font-size: 0.9rem;
  color: #ffd7a8;
}
.gr-nl__msg.is-error {
  color: #ffb4b4;
}
.gr-nl__msg.is-ok {
  color: #b8f0c8;
}
.gr-nl__success {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
}
.gr-nl__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.gr-nl-footer {
  width: min(100% - 3rem, 1180px);
  margin: 2rem auto 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.gr-nl-footer .gr-nl {
  max-width: 520px;
}
.gr-nl-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.gr-nl-popup[hidden] {
  display: none !important;
}
.gr-nl-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 34, 0.62);
}
.gr-nl-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
  border-radius: 18px;
  padding: 1.5rem 1.35rem 1.35rem;
  background: linear-gradient(160deg, #0a1a2e 0%, #106dba 140%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}
.gr-nl-popup__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.45rem;
}
@media (max-width: 767px) {
  .gr-nl__row {
    grid-template-columns: minmax(0, 1fr);
  }
  .gr-nl-footer {
    width: min(100% - 2rem, 1180px);
  }
}
