body {
  margin: 0;
  padding: 40px 15px 60px;
  background: #22364f;
  color: #16202b;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.card {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

/* red check pattern along the top */
.stripe {
  height: 18px;
  background-image:
    repeating-linear-gradient(90deg, rgba(181,52,43,.85) 0 9px, transparent 9px 18px),
    repeating-linear-gradient(0deg, rgba(181,52,43,.85) 0 9px, transparent 9px 18px);
}

.header {
  padding: 32px 30px 26px;
  border-bottom: 1px solid #dde3e9;
}

#title {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.15;
}

#description {
  margin: 0;
  max-width: 46ch;
  color: #5b6b7c;
}

#survey-form {
  padding: 30px;
}

.group {
  margin-bottom: 26px;
}

label, .ask {
  display: block;
  margin: 0 0 6px;
  font-weight: bold;
  font-size: 15px;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #dde3e9;
  border-radius: 3px;
  background: #fbfcfd;
  font: inherit;
  color: inherit;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  border-color: #16202b;
  outline: 2px solid #b5342b;
  outline-offset: 2px;
}

small {
  display: block;
  margin-top: 5px;
  color: #5b6b7c;
  font-size: 13px;
}

.pick {
  font-weight: normal;
  margin-bottom: 4px;
  cursor: pointer;
}

.pick input {
  margin-right: 6px;
  accent-color: #b5342b;
}

#submit {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 3px;
  background: #16202b;
  color: #fff;
  font: inherit;
  font-weight: bold;
  cursor: pointer;
}

#submit:hover {
  background: #b5342b;
}

@media (max-width: 480px) {
  .header, #survey-form {
    padding-left: 18px;
    padding-right: 18px;
  }
  #title {
    font-size: 25px;
  }
}
