<link rel="stylesheet" href="/inc-order-forms/order-form-modern.css">
html {
  background: #eef6fb;
}

body {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 18px 48px;
  background: #fff;
  color: #171f29;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  box-shadow: 0 8px 32px rgba(6, 79, 131, 0.1);
}

a {
  color: #0067ad;
}

h1,
h2,
h3 {
  color: #171f29;
  line-height: 1.2;
  font-weight: 800;
}

input,
textarea,
select {
  max-width: 100%;
  min-height: 32px;
  margin: 3px 4px;
  padding: 6px 8px;
  border: 1px solid #b9c3cf;
  border-radius: 4px;
  background: #fff;
  color: #111;
  font: inherit;
  box-sizing: border-box;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  min-height: 0;
  margin-right: 6px;
  transform: scale(1.12);
}

input[type="button"],
input[type="submit"],
input[type="reset"],
button {
  min-height: 42px;
  padding: 9px 16px;
  border: 0;
  border-radius: 6px;
  background: #0067ad;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

input[type="reset"] {
  background: #566574;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
  filter: brightness(0.95);
}

table {
  max-width: 100%;
  border-collapse: collapse;
}

img {
  max-width: 100%;
  height: auto;
}

blockquote {
  margin: 16px auto;
  padding: 0;
}

.inc-form-topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 -18px 24px;
  padding: 12px 18px;
  background: #0067ad;
  box-shadow: 0 5px 18px rgba(6, 79, 131, 0.18);
}

.inc-form-topbar a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.inc-form-topbar a:hover {
  background: #fff;
  color: #0067ad !important;
}

.inc-form-shell-note {
  margin-left: auto;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

body > div:first-of-type p:first-child font,
body > div:first-of-type #globalLink,
body > div:first-of-type p:nth-child(3) {
  display: none;
}

@media (max-width: 760px) {
  body {
    padding: 0 12px 36px;
    font-size: 15px;
    box-shadow: none;
  }

  .inc-form-topbar {
    margin: 0 -12px 18px;
    padding: 10px 12px;
  }

  .inc-form-shell-note {
    width: 100%;
    margin-left: 0;
  }

  input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):not([type="reset"]),
  textarea,
  select {
    width: 100% !important;
  }
}

@media print {
  html,
  body {
    background: #fff;
    box-shadow: none;
  }

  body {
    max-width: none;
    padding: 0;
  }

  input[type="button"],
  input[type="submit"],
  input[type="reset"],
  button,
  .inc-form-topbar {
    display: none !important;
  }
}

