.form-section{
  padding: 10px 0px;
  /* margin: 30px 0px; */
  border-bottom: 1px solid #E4E5EC; 
}

.required::after {
  content: ' *';
  color: red
}

input[type=text] {
  text-transform: uppercase;
}

input[type=email] {
  text-transform: lowercase;
}

body {
  background-color: #ebdcae;
  /* background-image: url("../img/background.jpg"); */
  /* Add the blur effect */
  /* filter: blur(8px);
  -webkit-filter: blur(8px); */

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  /* background-repeat: no-repeat;
  background-size: cover; */
}
body > .container {
  background-color: rgb(255 255 255 / 80%);
}

.btn-custom {
  padding: 0.8rem 2rem;
  color: #fff;
  background-color: #000;
  border-color: #000;
  font-size: 130%;
}
.btn-custom:hover {
  color: #000;
  background-color: #fff;
  border-color: #000;
}


.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  display: grid;
  align-content: center;
  justify-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.5);
}
.loading-wheel {
  width: 20px;
  height: 20px;
  border-width: 30px;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
}
.loading-text {
  color: #fff;
  font-size: 2rem;
}
.style-2 .loading-wheel {
  border-style: double;
  border-color: #ccc transparent;
}
@-webkit-keyframes spin {
  0% {
      -webkit-transform: rotate(0);
  }
  100% {
      -webkit-transform: rotate(-360deg);
  }
}