body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #fff;
  box-sizing: border-box;
  background-image: url(./images/bg-intro-desktop.png);
  background-color: hsl(0, 100%, 74%);
  font-family: "Poppins", sans-serif;
  display: flex;
}
h1 {
  margin: 0;
  line-height: 1;
  font-weight: 700;
}

p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

header {
  width: 60vh;
  margin: 15em 10em;
}

form {
  padding: 1em;
}
.small-text {
  color: gray;
  padding: 1.25em;
}
.small-text a {
  text-decoration: none;
  color: hsl(0, 100%, 74%);
  font-weight: 600;
}
.form-control {
  margin-bottom: 0.75em;
  padding-bottom: 1em;
}

.wrapper {
  width: 38%;
  margin-top: 8em;
}

.form-control input {
  border: 2px solid #f0f0f0;
  border-radius: 5px;
  display: block;
  position: relative;
  font-family: inherit;
  font-size: 14px;
  padding-top: 1em;
  padding-bottom: 1em;
  width: 100%;
}
.form-control.success input {
  border: 2px solid rgb(75, 126, 75);
}

.form-control.error input {
  border: 2px solid rgb(196, 18, 18);
}

.form-control small {
  position: absolute;
  margin: 0.5em;
  color: black;
  visibility: hidden;
}
.btn {
  border-radius: 5px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600px;
  padding-top: 1em;
  padding-bottom: 1em;
  width: 100%;
}
.btn:hover {
  color: black;
  background: white;
  transition: background 0.2s ease;
}
.trial {
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600px;
  text-align: center;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  background-color: hsl(249, 40%, 37%);
  border: 2px solid hsl(249, 40%, 37%);

  /*box-shadow: 2px 8px 10px hsl(0, 0%, 49%);*/
}

.claim {
  background-color: hsl(154, 59%, 51%);
  border: 2px solid hsl(154, 59%, 51%);
  text-transform: uppercase;
  /*box-shadow: 0 0 5px lightsteelblue;*/
}
.container {
  margin-top: 0.75em;
  padding: 1em;
  border-radius: 5px;
  background-color: #fff;
}

@media (max-width: 375px) {
  body {
    display: flex;
    flex-direction: column;
  }

  header {
    width: 45vh;
    margin: 2em 2em 0.5em;
  }

  .wrapper {
    width: 80%;
    margin: 2em;
  }

  .container {
    margin-bottom: 1em;
    padding: 0.5em;
  }
  .small-text {
    font-size: 8px;
    padding: 1em;
  }
}
