/* genral classes */
.required-message{color:#f00;font-size:12px;}
.hidden{display:none;}

/**** base classes ****/
.form-wrapper{padding:50px 15px 130px 15px;}

/**** begin: btn style ****/
.custom-btn{
  background-color: #0078d0;
  border: 0;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  outline: 0;
  padding: 13px 22px !important;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgb(255 255 255 / 15%) 0 3px 15px inset, rgb(0 0 0 / 8%) 0 3px 5px, rgb(0 0 0 / 8%) 0 10px 13px;
}
.custom-btn:before {
  background-color: initial;
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 125px;
  content: "";
  height: 50%;
  left: 4%;
  opacity: .5;
  position: absolute;
  top: 0;
  transition: all .3s;
  width: 92%;
}
.custom-btn:hover {
  box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
  transform: scale(1.05);
  color: #fff;
}

/**** End: btn style ****/

