/* FORMULARIO MULTIPASO NH CRM DONACIONES */

.crm-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #FDBF3B;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
}

.crm-form h2 {
  font-size: 40px;
  margin-bottom: 1rem;
  color: #000;
}

.crm-form h3 {
  font-size: 20px;
  margin-top: 1rem;
  color: #000;
}

.crm-form p {
  margin-bottom: 1rem;
}

.crm-form .form-step {
  display: none;
}

.crm-form .form-step.active {
  display: block;
}

.crm-form .amount-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.crm-form .amount-buttons .btn-amount {
  flex: 1;
  background: #E69D00;
  color: #fff;
  border: 0px;
  border-radius: 33px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
}

.crm-form .amount-buttons .btn-amount:hover {
  background: #BD7400;
}

.crm-form .amount-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: end;
  margin-top: 1rem;
}

.crm-form .amount-input {
  display: flex;
  flex-direction: column;
}

.crm-form .amount-input input {
  margin-bottom: 0px!important;
}

.crm-form .next-step, .crm-form .prev-step {
  margin: 0px!important;
}

.crm-form input[type="text"],
.crm-form input[type="email"],
.crm-form input[type="number"],
.crm-form select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  margin-bottom: 1rem;
  border: 0px;
  border-radius: 33px;
  box-sizing: border-box;
  font-size: 15px;
  background: #fff;
}

.crm-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #000;
}

.crm-form #campo-iban {
  margin-top: 1rem;
}

.crm-form .btn {
  background-color: #D78901;
  color: #fff;
  border: 0px;
  border-radius: 33px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  transition: background-color 0.3s ease;
}

.crm-form .btn:hover {
  background-color: #b37303;
}

.crm-form .btn-donar {
  background-color: #28a745;
}

.crm-form .btn-donar:hover {
  background-color: #218838;
}

@media (max-width: 480px) {
  .btn, .btn-amount {
    width: 100%;
    margin: 0.3rem 0;
  }

  .amount-buttons {
    flex-direction: column;
  }
}