.form-section{
  background:#ffffff;
  padding:90px 6%;
}

.form-container{
  max-width:560px;
  margin:0 auto;
}

.form-box{
  background:#ffffff;
  border-radius:28px;
  padding:38px 28px;
  text-align:left;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  border:1px solid #eeeeee;
}

.form-top{
  color:var(--dorado);
  text-transform:uppercase;
  font-weight:900;
  font-size:14px;
  letter-spacing:1px;
  margin-bottom:10px;
}

.form-box h2{
  color:var(--azul);
  font-size:34px;
  line-height:1.1;
  margin-bottom:10px;
}

.form-description{
  color:#555;
  font-size:16px;
  line-height:1.5;
  margin-bottom:28px;
}

#moneyForm{
  display:grid;
  gap:14px;
}

#moneyForm input,
#moneyForm select{
  width:100%;
  height:56px;
  border-radius:14px;
  border:1px solid #dcdcdc;
  background:#fafafa;
  padding:0 18px;
  font-size:15px;
  color:#111;
  outline:none;
}

#moneyForm input:focus,
#moneyForm select:focus{
  background:#fff;
  border-color:var(--dorado);
  box-shadow:0 0 0 3px rgba(244,180,0,.16);
}

#moneyForm button{
  width:100%;
  height:58px;
  border:0;
  border-radius:16px;
  background:var(--dorado);
  color:var(--azulOscuro);
  font-weight:900;
  font-size:16px;
  cursor:pointer;
  margin-top:4px;
}

.form-box small{
  display:block;
  margin-top:16px;
  color:#666;
  font-size:13px;
  text-align:center;
}
.check-label{

  display:flex;

  align-items:flex-start;

  gap:12px;

  margin-top:6px;

  text-align:left;
}

.check-label input{

  width:18px !important;
  height:18px !important;

  margin-top:3px;
}

.check-label span{

  color:#555;

  font-size:14px;

  line-height:1.5;
}
.hidden-field{
  display:none !important;
}