.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;
}

.signup-form-title {
  color: white;
  font-size: 20px;
  font-weight: 400;
  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;
}

@media (max-width: 480px) {
  .signup-form-title {
    width: 300px;
  }
  .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);
  }
}