/* FORM TYPOGRAPHY*/
/* line 4, ../../assets/sass/components/stylesheets/_button.scss */
*:focus {
  outline: none;
  box-shadow: unset;
}

/* line 9, ../../assets/sass/components/stylesheets/_button.scss */
.btn-auth {
  border-radius: 32px 32px 0 32px;
  width: 100%;
  padding: 17px 20px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 24, ../../assets/sass/components/stylesheets/_button.scss */
.btn-auth:hover {
  color: white;
}
/* line 27, ../../assets/sass/components/stylesheets/_button.scss */
.btn-auth:active {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
/* line 34, ../../assets/sass/components/stylesheets/_button.scss */
.btn-auth:focus {
  outline: none;
  box-shadow: unset;
}

/* FORM TYPOGRAPHY*/
/* line 3, ../../assets/sass/components/stylesheets/_input.scss */
input[type=text],
input[type=password],
input[type=email] {
  width: 100%;
  border: 1px solid #ebebeb;
  border-radius: 32px 32px 0 32px;
  padding: 17px 20px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

/* ANIMATIONS */
/* Simple CSS3 Fade-in-down Animation */
/* line 3, ../../assets/sass/components/stylesheets/_animation.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* line 43, ../../assets/sass/components/stylesheets/_animation.scss */
.fadeIn {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
}

/* line 58, ../../assets/sass/components/stylesheets/_animation.scss */
.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

/* line 64, ../../assets/sass/components/stylesheets/_animation.scss */
.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

/* line 70, ../../assets/sass/components/stylesheets/_animation.scss */
.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

/* line 76, ../../assets/sass/components/stylesheets/_animation.scss */
.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* FORM TYPOGRAPHY*/
/* line 4, ../../assets/sass/components/stylesheets/_title.scss */
.label-title {
  color: #006DD2;
}
/* line 6, ../../assets/sass/components/stylesheets/_title.scss */
.label-title::after {
  height: 2px;
  width: 20%;
  margin: 15px auto;
  background: #006DD2;
  display: block;
  content: "";
}

/* line 16, ../../assets/sass/components/stylesheets/_title.scss */
.label-agree-term {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}
/* line 20, ../../assets/sass/components/stylesheets/_title.scss */
.label-agree-term:hover {
  color: #333333;
}

/* line 25, ../../assets/sass/components/stylesheets/_title.scss */
.term-service {
  color: #555;
}
/* line 27, ../../assets/sass/components/stylesheets/_title.scss */
.term-service:hover {
  color: #333333;
}

/***underline***/
/* line 34, ../../assets/sass/components/stylesheets/_title.scss */
.text-underline:after {
  width: 30%;
  display: block;
  bottom: -10px;
  height: 2px;
  margin: 0 auto;
  margin-top: 10px;
  background-color: black;
  content: "";
}

/* line 47, ../../assets/sass/components/stylesheets/_title.scss */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #0d0d0d;
  content: "";
  transition: width 0.2s;
}
/* line 57, ../../assets/sass/components/stylesheets/_title.scss */
.underlineHover:hover {
  color: #0d0d0d;
}
/* line 59, ../../assets/sass/components/stylesheets/_title.scss */
.underlineHover:hover:after {
  width: 100%;
}

/* line 2, ../../assets/sass/components/stylesheets/_loading.scss */
.loading .spinner-border {
  color: #4386f7;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
}

/* line 11, ../../assets/sass/components/stylesheets/_loading.scss */
.overlay {
  display: none;
  background: #212529;
  opacity: 0.5;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  position: fixed;
  width: 100%;
  height: 100%;
}
