/* Match the development campaign shell while keeping the form on Oracle. */
html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  height: 100svh;
}

.partner-campaign-nav {
  display: flex;
  flex: none;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 20px;
  padding: 12px max(18px, 50% - 580px);
  border-bottom: 1px solid #d7e5f7;
  background: #fff;
  font-size: .875rem;
  line-height: 1.5;
}

.partner-campaign-nav a {
  color: #075be8;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.partner-campaign-nav a:focus-visible {
  outline: 3px solid #075be8;
  outline-offset: 4px;
}

.partner-campaign-nav span {
  color: #42566f;
}

.campaign-page {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  .campaign-page {
    scroll-behavior: auto;
  }
}
