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

body {
  font-family: "Poppins", sans-serif;
  background-color: hsl(0, 100%, 74%);
  background-image: url(../images/bg-intro-desktop.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body > div {
  position: relative;
}

@media (max-width: 767px) {
  body {
    height: 100% !important;
    background-image: url(../images/bg-intro-mobile.png) !important;
  }
  body h1 {
    margin-top: 50px;
  }
  h1, h5, p {
    text-align: center;
  }
}
form input {
  border: 1px solid hsl(246, 25%, 77%);
  padding: 12px !important;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  caret-color: hsl(248, 32%, 49%);
  color: hsl(249, 10%, 26%) !important;
  font-size: 14px !important;
}
form input:focus {
  border-color: hsl(248, 32%, 49%);
  outline: 0 !important;
  box-shadow: none !important;
}
form .error {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 10px !important;
  color: hsl(0, 100%, 74%) !important;
  visibility: hidden;
}
form .btn {
  background-color: hsl(154, 59%, 51%) !important;
  border: 0;
  outline: 0;
}
form .img-err {
  top: 50%;
  right: 12px;
  width: 17px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  visibility: hidden;
}
form p {
  color: hsl(246, 25%, 77%);
  font-size: 10px;
}
form p a {
  color: hsl(0, 100%, 74%);
}

h5 {
  font-size: 13px;
  background-color: hsl(248, 32%, 49%);
  color: white;
  text-align: center;
  padding: 15px;
}
h5 > small {
  color: hsl(246, 25%, 77%);
}/*# sourceMappingURL=main.css.map */