.guide-download-form {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.guide-download-form input[type='email'] {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 10px;
  padding: 0 18px;
  font-size: 15px;
  color: #255b68;
  background: #ffffff;
  outline: none;
}

.guide-download-form input[type='email']::placeholder {
  color: #255b68;
  opacity: 0.85;
}

.guide-download-form button {
  min-height: 48px;
  border: none;
  border-radius: 10px;
  padding: 0 24px;
  background: #fecb0a;
  color: #255b68;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.guide-download-form button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.guide-download-form__message {
  font-size: 14px;
  margin-top: 8px;
}

.guide-download-form__message.is-error {
  color: #ffe1e1;
}

.guide-download-form__message.is-success {
  color: #e6ffe6;
}

@media (max-width: 767px) {
  .guide-download-form {
    flex-direction: column;
    align-items: stretch;
  }

  .guide-download-form button {
    width: 100%;
  }
}
