/* ===== Estilo para el título ===== */
h2 {
  text-align: center;
  font-size: 2em;
  color: #666;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* ===== Contenedor general del formulario ===== */
.donacion-formulario {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px auto;
  padding: 10px;
}

/* ===== Estilo del formulario ===== */
.form-paypal {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 500px;
  padding: 20px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ===== Grupos de campos ===== */
.form-paypal .form-group {
  margin-bottom: 20px;
}

/* ===== Etiquetas ===== */
.form-paypal label {
  display: block;
  font-weight: bold;
  color: #666;
  margin-bottom: 8px;
}

/* ===== Inputs ===== */
.form-paypal input[type="text"],
.form-paypal input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
  background-color: #fafafa;
  transition: border 0.2s ease-in-out;
}

.form-paypal input:focus {
  outline: none;
  border-color: #bbca6a;
}

/* ===== Botón de envío ===== */
.form-paypal button {
  width: 100%;
  background-color: #bbca6a;
  border: 1px solid #aab963;
  color: #fff;
  font-weight: bold;
  padding: 12px 0;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-paypal button:hover {
  background-color: #9cad56;
}
