.form {
  margin-top: 25px;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

label {
  display: inline-block;
  color: #010101;
  font-weight: 400;
  font-size: 0.8125rem;
  margin-bottom: 12px;
}

.form-control {
  display: block;
  width: 100%;
  height: 52px;
  /* padding: 1.573rem .75rem; */
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #232323;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #fff;
  border-radius: 10px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #495057;
  /* border-color: rgb(253,127,35); */
  outline: 0;
  box-shadow: none;
}


/*------------------------------------------------------------------
[ Focus Input ]*/

.focus-inputbox {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 10px;
  /* box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1); */
  box-shadow: 0px 0px 0px 0px;
  color: rgba(253,127,35, 0.8);

  /* -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s; */
}

.inputbox:focus + .focus-inputbox {
  /* box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.2); */
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate .focus-inputbox {
  box-shadow: 0 5px 30px 0px rgba(250, 66, 81, 0.1);
  -moz-box-shadow: 0 5px 30px 0px rgba(250, 66, 81, 0.1);
  -webkit-box-shadow: 0 5px 30px 0px rgba(250, 66, 81, 0.1);
  -o-box-shadow: 0 5px 30px 0px rgba(250, 66, 81, 0.1);
  -ms-box-shadow: 0 5px 30px 0px rgba(250, 66, 81, 0.1);
}

.alert-validate::before {
  content: attr(data-validate);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;

  width: 100%;
  height: 100%;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 10px;
  /* border: 1px solid lightgrey; */
  top: 0px;
  left: 0px;
  line-height: 1.5;
  padding-left: .75rem;
  pointer-events: none;
  font-size: 1.125rem;
  color: #fa4251;

  visibility: hidden;
  opacity: 0;


  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 736px) {
  .alert-validate::before {
    font-size: 1rem;
  }
}

.btn-hide-validate {
  font-family: Material-Design-Iconic-Font;
  font-size: 1.125rem;
  color: #fa4251;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  /* height: 62px; */
  height: 100%;
  padding: 1.573rem 0;

  top: 0px;
  right: 23px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/* .rs1-alert-validate.alert-validate::before {
  background-color: #fff;
} */

/* .true-validate::after {
  content: "\f269";
  font-family: Material-Design-Iconic-Font;
  font-size: 1.125rem;
  color: #57b846;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  top: 0px;
  right: 23px;
} */
