.overview-strapline-form {
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  /* Subtle glass effect or just transparency */
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  /* Allow wrapping on smaller screens */
  gap: 15px;
  align-items: center;
  width: 100%;
  max-width: 900px;
  /* Adjust as needed */
}
@media (max-width: 768px) {
  .overview-strapline-form {
    flex-direction: column;
    align-items: stretch;
  }
}
.overview-strapline-form .input-group {
  flex: 1;
  min-width: 200px;
}
.overview-strapline-form .input-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  font-family: "Outfit", sans-serif;
  /* Assuming site font */
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
}
.overview-strapline-form .input-group input:focus {
  border-color: #bfa37c;
  /* Gold/accent color from site vibe */
}
.overview-strapline-form .input-group input::-moz-placeholder {
  color: #888;
}
.overview-strapline-form .input-group input::placeholder {
  color: #888;
}
.overview-strapline-form .submit-btn {
  padding: 12px 30px;
  background-color: #bb8a31;
  /* Gold/accent color */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}
.overview-strapline-form .submit-btn:hover {
  background-color: #997229;
  transform: translateY(-1px);
}
.overview-strapline-form .submit-btn:active {
  transform: translateY(0);
}/*# sourceMappingURL=overview-form.css.map */