.form-section{
   background-color: #FBF9F5;
   border-radius: 15px;
   box-shadow: 0px 6px 10px -2px rgb(0 0 0 / 30%);
   padding: 10px 40px 20px 40px;
}
.form-section h1 {
font-family: 'DM Sans', sans-serif;
font-size: 40px;
font-weight: 700;
color:#2F488B;
text-align: center;
padding: 40px 0px 20px 0px;

}
.form-section .row span{
    line-height: 50px;
    font-weight: bold;
}
.form-section .donativo-info{

}
.form-section span.donativo-info{
/* background-color: #24B573; */
font-family: font-family: 'DM Sans', sans-serif;
font-size: 30px;
font-weight: 700;
color: #FFF;
text-align: center;
/* padding: 25px 30px 25px 30px; */
}

.form-section input[type="text"], .form-section input[type="email"], .form-section input[type="password"], .form-section input[type="tel"], .form-section select {
    width: 100%;
    background: #ffffff;
    border: 1px solid #2F488B;
    border-radius: 5px;
    height: 50px;
    padding: 5px;
    color: #000;
}
.form-section input[type="submit"]{
    text-transform: capitalize;
    background-color: #25A7DF;
    border: none;
    color: white;
    padding: 0.5vw 1.5vw;
    font-family:'DM Sans', sans-serif !important;
    box-shadow: 0px 6px 10px -2px rgb(0 0 0 / 30%);
    font-size: 16px;
    font-weight: 700px;
    min-width: 200px;
    -webkit-transition: background-color 1s ease-out;
  -moz-transition: background-color 1s ease-out;
  -o-transition: background-color 1s ease-out;
  transition: background-color 1s ease-out;
}
.form-section input[type="submit"]:hover{
    background-color: #F8DF00;
    border: none;
    color: #000000;
    -webkit-transition: background-color 1s ease-out;
  -moz-transition: background-color 1s ease-out;
  -o-transition: background-color 1s ease-out;
  transition: background-color 1s ease-out;
}
.btn-bancario{
background-color:#2F488B;
color:#ffffff;
font-size: 30px;
font-weight: 700;
width: 85%;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  top: -22px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #25A7DF;
}

input:focus + .slider {
  box-shadow: 0 0 1px #25A7DF;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}