#ns-boot-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10001;
  overflow: hidden;
  background: rgba(123, 28, 44, 0.08);
}

html.ns-app-ready #ns-boot-progress {
  display: none;
}

#ns-boot-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: #7b1c2c;
  box-shadow: 0 0 8px rgba(123, 28, 44, 0.45);
  animation: ns-boot-progress-fill 8s ease-out forwards;
}

@keyframes ns-boot-progress-fill {
  0% {
    width: 0%;
  }
  20% {
    width: 28%;
  }
  55% {
    width: 62%;
  }
  100% {
    width: 88%;
  }
}

@keyframes ns-boot-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

#ns-boot-shell {
  min-height: 100vh;
  background: #ffffff;
}

html.ns-app-ready #ns-boot-shell {
  display: none;
}

.ns-boot-header {
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px;
}

.ns-boot-logo-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.ns-boot-logo {
  display: block;
  width: 40px;
  height: 40px;
  margin: 1.5rem auto 0.75rem;
  border-radius: 4px;
}

.ns-boot-main {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.ns-boot-static {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  padding-top: 0.5rem;
}

.ns-boot-static--wide {
  max-width: 56rem;
}

.ns-boot-block {
  display: block;
  border-radius: 8px;
  background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
  background-size: 200% 100%;
  animation: ns-boot-shimmer 1.2s ease-in-out infinite;
}

.ns-boot-title-slot {
  min-height: 4.8rem;
  margin: 0 0 1.5rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ns-boot-title {
  height: 2rem;
  width: min(100%, 20rem);
  margin: 0;
  border-radius: 6px;
}

.ns-boot-heading {
  height: 1.05rem;
  width: min(100%, 12rem);
  margin: 1.75rem 0 0.75rem;
  border-radius: 4px;
}

.ns-boot-line {
  height: 0.95rem;
  width: 100%;
  margin-bottom: 0.65rem;
  border-radius: 4px;
}

.ns-boot-line--short {
  width: 72%;
}

.ns-boot-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.ns-boot-contact-title {
  height: 1.875rem;
  width: min(100%, 14rem);
  margin: 0 auto 1.5rem;
  border-radius: 6px;
}

.ns-boot-field {
  height: 2.5rem;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.ns-boot-field--tall {
  height: 6rem;
}

.ns-boot-submit {
  height: 2.5rem;
  width: 7rem;
  margin-top: 0.25rem;
  border-radius: 6px;
}
