div#wpcom-launch-banner-wrapper {
    display: none;
}
/* basic input styles you assign with "cc-input" */
.cc-input {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", "Libre Baskerville", serif;
  font-size: 15px;
  line-height: 1.45;        /* vertical spacing of text inside */
  padding: 10px 12px;      /* space inside the input */
  margin-bottom: 5px;     /* space between stacked fields */
  border-radius: 6px;
  border: 1px solid #d0d0d0;
  box-sizing: border-box;
}

/* extra class to make some inputs larger */
.large-input {
  font-size: 18px;
  padding: 10px 12px;
}

/* placeholder styling */
.cc-input::placeholder {
  color: #47494b;
  font-style: italic;
  letter-spacing: 0.2px;
}

/* focus state */
.cc-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}