:root {
  --page-bg: #eef4f8;
  --panel-bg: rgba(255, 255, 255, 0.96);
  --text: #424146;
  --muted: #6f7278;
  --blue: #1776b8;
  --blue-deep: #0f5b93;
  --green: #8dc63f;
  --green-soft: #eef8df;
  --silver: #d8dde3;
  --border: rgba(23, 118, 184, 0.14);
  --shadow: 0 28px 80px rgba(15, 91, 147, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(141, 198, 63, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(23, 118, 184, 0.2), transparent 32%),
    linear-gradient(180deg, #f8fbfd 0%, var(--page-bg) 100%);
}

.page {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 56px;
}

.panel {
  background:
    linear-gradient(90deg, var(--blue) 0 62%, var(--green) 62% 100%) top / 100% 8px no-repeat,
    var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 32px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.brand {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.brand img {
  display: block;
  width: min(320px, 100%);
  height: auto;
}

.intro {
  text-align: center;
  margin-bottom: 28px;
}

.intro h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.details {
  display: grid;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.5;
}

.details div {
  padding: 12px 16px;
  border: 1px solid rgba(23, 118, 184, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(23, 118, 184, 0.05), rgba(141, 198, 63, 0.08));
}

.details strong {
  color: var(--blue-deep);
}

.details span {
  display: inline;
}

.form-shell {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

#wufoo-shff5pr00wlosl {
  min-height: 1586px;
  background:
    linear-gradient(180deg, rgba(216, 221, 227, 0.2), rgba(255, 255, 255, 0));
}

#wufoo-shff5pr00wlosl .wufoo-form-container {
  border-radius: 22px;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 20px, 960px);
    padding: 20px 0 28px;
  }

  .panel {
    padding: 20px;
    border-radius: 20px;
  }

  .details {
    font-size: 1rem;
  }

  .details strong,
  .details span {
    display: block;
  }
}
