@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  font-family: "Poppins", sans-serif;
}

body {
  background-image: url(../images/bg-intro-desktop.png);
  background-size: cover;
  background-color: #ff7a7a;
  color: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  min-height: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main {
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  gap: 30px;
}

.content-left {
  padding: 10px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.content-right {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

button {
  width: 100%;
  padding: 20px 60px;
  margin: 10px auto;
  border-radius: 10px;
  border: none;
  color: white;
  -webkit-box-shadow: 0px 7px 0px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 7px 0px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

button#try-free {
  background-color: #6055a5;
}

button#try-free:hover {
  position: relative;
  top: 7px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button#claim-free {
  background-color: #38cc8c;
  -webkit-box-shadow: 0px 3px 0px 0px #14915a;
          box-shadow: 0px 3px 0px 0px #14915a;
}

button#claim-free:hover {
  position: relative;
  top: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form {
  background-color: white;
  margin: 10px auto;
  padding: 30px;
  text-align: center;
  color: #3e3c49;
  border-radius: 10px;
}

input {
  width: 100%;
  margin: 5px auto;
  padding: 20px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid #b9b6d3;
  font-weight: 700;
}

span {
  font-weight: 700;
}

p {
  font-size: 16px;
}

p#term {
  font-size: 12px;
  margin: 5px 0;
  color: #b9b6d3;
}

p#term > span {
  color: #ff7a7a;
}

label {
  display: block;
  font-size: 12px;
  text-align: end;
  font-style: italic;
  color: #ff7a7a;
  padding: 0 10px 10px;
  visibility: hidden;
}

.input-form {
  position: relative;
}

img {
  position: absolute;
  top: 24px;
  right: 15px;
  visibility: hidden;
}

.error input {
  border: 1px solid #ff7a7a;
}

.error label {
  visibility: visible;
}

.error img {
  visibility: visible;
}

@media only screen and (max-width: 768px) {
  main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
}
/*# sourceMappingURL=stylesheet.css.map */