* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-image: url(/image/web-form.jpg);
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .container {
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 4px 2px 4px rgba(0, 0, 0, 0.5);
          box-shadow: 4px 2px 4px rgba(0, 0, 0, 0.5);
  width: 500px;
  max-width: 90%;
}

body .container .h1 {
  margin-top: -70px;
  text-align: center;
  border-bottom: 1px solid #000;
}

body .container .h1 svg text {
  stroke: #000;
  font-size: 40px;
  font-weight: bold;
  stroke-width: 3;
  -webkit-animation: animate 5s;
          animation: animate 5s;
}

@-webkit-keyframes animate {
  0% {
    stroke-dasharray: 0 25%;
  }
  100% {
    stroke-dasharray: 50% 0;
  }
}

@keyframes animate {
  0% {
    stroke-dasharray: 0 25%;
  }
  100% {
    stroke-dasharray: 50% 0;
  }
}

body .container .form-control {
  margin-bottom: 80px;
  position: relative;
  padding-bottom: 10px;
  border: none;
}

body .container .form-control label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
  text-transform: capitalize;
}

body .container .form-control input {
  display: block;
  width: 100%;
  height: 2.5rem;
  padding-left: 5px;
  font-weight: 500;
}

body .container .form-control .success, body .container .form-control .error {
  position: absolute;
  top: 47px;
  right: 17px;
  visibility: hidden;
}

body .container .form-control small {
  visibility: hidden;
  font-weight: 500;
}

body .container .success input {
  border-color: #32cd32;
}

body .container .success .success {
  color: #32cd32;
  visibility: visible;
}

body .container .success small {
  color: #32cd32;
  visibility: visible;
}

body .container .error input {
  border-color: #dc143c;
}

body .container .error .error {
  color: #dc143c;
  visibility: visible;
}

body .container .error small {
  color: #dc143c;
  visibility: visible;
}

body .container button {
  border: none;
  position: relative;
  font-size: 17px;
  width: 180px;
  top: -30px;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
  -webkit-transition: 1s;
  transition: 1s;
  text-align: center;
  padding: 10px 20px;
  color: #000;
  margin: 20px 0;
}

body .container button svg, body .container button svg rect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke: #000;
  stroke-width: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  stroke-dasharray: 450;
  stroke-dashoffset: 0;
}

body .container button:hover svg rect {
  stroke-dasharray: 100,450;
  stroke-dashoffset: 285;
}

body .container button:focus {
  outline: none;
}
/*# sourceMappingURL=index.css.map */