/* Easy Mailchimp Form Beta - CSS Simple */

.emf-beta-wrapper {
  width: 100%;
  margin: 20px auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.emf-beta-form {
  width: 100%;
}

.emf-beta-group {
  margin-bottom: 15px;
}

.emf-beta-input {
  width: 100%!important;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.emf-beta-input:focus {
  outline: none;
  border-color: #007cba;
}

.emf-beta-button {
  width: 100%;
  padding: 12px 24px;
  background-color: #000;
  color: #c39533;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.emf-beta-button:hover {
  color: white;
  transform: translateY(-1px);
}

.emf-beta-message {
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 15px;
  text-align: center;
}

.emf-beta-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.emf-beta-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 600px) {
  .emf-beta-wrapper {
    margin: 20px 10px;
  }

  .emf-beta-input,
  .emf-beta-button {
    font-size: 14px;
  }
}
