@charset "UTF-8";

/* Shared registration wall card + Type 1 inline overlay. */

.reg-wall__card {
  position: relative;
  width: 100%;
  max-width: min(684px, 100%);
  max-height: 100%;
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  padding: 44px 32px;
  box-shadow: 0 8px 32px rgba(2, 21, 70, 0.12);
  color: #021546;
  text-align: center;
  box-sizing: border-box;
}

.reg-wall__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  background-image: linear-gradient(135deg, rgba(0, 78, 223, 0.6) 0%, rgba(0, 191, 223, 0.6) 100%);
}

.reg-wall__icon img {
  display: block;
  width: 28px;
  height: 31px;
}

.reg-wall__heading {
  margin: 0 0 16px 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 52px;
  letter-spacing: -1px;
  color: #021546;
}

.reg-wall__body {
  margin: 0 0 30px 0;

  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  letter-spacing: 0px;
  text-align: center;
}

.reg-wall__buttons {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  gap: 20px;
}

.reg-wall__button {
  flex: 1 1 0;
  width: 100%;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
}

/* Type 1 — inline wall over a gated component (e.g. iframe form). */

.reg-wall--inline {
  position: relative;
  isolation: isolate;
  max-width: 100%;
}

.reg-wall__gated {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.reg-wall__gated iframe {
  max-width: 100%;
}

.reg-wall__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

@media (max-width: 555px) {
  .reg-wall__heading {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0px;
  }

  .reg-wall__body {
    margin: 0 0 20px 0;
  }

  .reg-wall__card {
    padding: 40px 20px;
  }

  .reg-wall__icon {
    margin: 0 auto 16px;
  }

  .reg-wall__buttons {
    flex-direction: column;
    gap: 16px;
  }

  .reg-wall__button {
    flex: 0 0 auto;
    width: 100%;
  }
}
