.webform-signup {
  background-color: #0071BB; /* Blue background as shown in screenshot */
  padding: 40px 0;
  width: 100%;
}
.webform-signup .signup-form-content {
  border: 1px solid white;
  margin: 0;
  padding: 20px 15%;
}
.webform-signup .signup-form-content .form-type-email {
  margin: 0;
}
.webform-signup .signup-form-content .form-type-email input[type=email] {
  width: 100%;
  border: none;
  border-radius: 0;
  font-size: 16px;
  background-color: white;
  color: #333;
  box-sizing: border-box;
  height: auto;
  padding: 16px;
}
.webform-signup .signup-form-content .form-type-email input[type=email]::placeholder {
  color: #666;
  opacity: 1;
}
.webform-signup .signup-form-content .form-type-email input[type=email]:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.webform-signup .signup-form__submit.usa-button {
  width: 150px !important;
  height: 56px !important;
  min-width: 150px !important;
  max-width: 150px !important;
  min-height: 56px !important;
  max-height: 56px !important;
  margin: 1.75rem auto 0 !important;
  padding: 0 1.5rem !important;
  border: 0 !important;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background-color: #f2f2f2 !important;
  color: #1b1b1b !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
.webform-signup .signup-form__submit.usa-button:hover, .webform-signup .signup-form__submit.usa-button:focus {
  background-color: #e5e5e5 !important;
  color: #1b1b1b !important;
}

.signup-form-title {
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  margin: 0;
  z-index: 1;
  background: #0071BB;
  padding: 0 20px;
  font-family: var(--vads-font-family-sans);
}

@media (max-width: 480px) {
  .signup-form-title {
    width: 215px;
    padding: 0;
    top: -28px;
  }
  .signup-form-title + .vads-grid-row {
    margin-top: 30px !important;
  }
}
@media (min-width: 640px) and (max-width: 768px) {
  .signup-form-title + .vads-grid-row [type=submit] {
    margin-top: calc(1.875rem - 0.2em);
  }
}