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

html {
  font-size: 16px;
}

body {
  font-family: "Roboto", sans-serif;
  background: hsl(235, 18%, 26%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
}
body #wrapper {
  display: flex;
  justify-content: center;
}
body #wrapper #card {
  background: hsl(0, 0%, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 12px;
  padding: 20px 20px 20px 50px;
}
body #wrapper #card #left {
  flex: 1;
  width: 100%;
  margin-right: 55px;
}
body #wrapper #card #left h1 {
  font-size: 3rem;
  color: hsl(234, 29%, 20%);
  margin-bottom: 30px;
}
body #wrapper #card #left p {
  margin-bottom: 20px;
}
body #wrapper #card #left ul {
  margin-bottom: 40px;
}
body #wrapper #card #left ul li {
  list-style: inside url(assets/images/icon-list.svg);
  line-height: 2.2rem;
}
body #wrapper #card #left #emailEntry {
  display: block;
  margin-bottom: 25px;
}
body #wrapper #card #left #emailEntry label {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 10px;
}
body #wrapper #card #left #emailEntry label #invalidEmail {
  color: hsl(4, 100%, 67%);
}
body #wrapper #card #left #emailEntry input {
  width: 100%;
  height: 35px;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  border: solid hsl(231, 7%, 60%) 0.1rem;
}
body #wrapper #card #left #emailEntry .errorInput {
  color: hsl(4, 100%, 67%);
  border: solid hsl(4, 100%, 67%) 0.1rem;
  background: hsla(4, 100%, 67%, 0.1);
}
body #wrapper #card #right {
  flex: 0.9;
  height: 100%;
}
body #wrapper #card #right #desktop {
  height: 100%;
  width: 100%;
}
body #wrapper #card #right #mobile {
  display: none;
}
body #thanksCard {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  width: 400px;
  background: hsl(0, 0%, 100%);
  border-radius: 12px;
}
body #thanksCard #img {
  display: grid;
  width: 100%;
  margin-bottom: 30px;
}
body #thanksCard #img img {
  width: 50px;
}
body #thanksCard h1 {
  font-size: 3rem;
  color: hsl(234, 29%, 20%);
  margin-bottom: 20px;
}
body #thanksCard p {
  line-height: 1.5rem;
  margin-bottom: 30px;
}
body #thanksCard button {
  height: 2.8rem;
  margin-bottom: 10px;
}
body button {
  background: hsl(234, 29%, 20%);
  color: hsl(0, 0%, 100%);
  padding: 10px 25px;
  width: 100%;
  height: 35px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
}
body button:hover {
  background: linear-gradient(90deg, #ff6d8a, hsl(4, 100%, 67%));
  cursor: pointer;
}
body .attribution {
  font-size: 0.8rem;
  text-align: center;
  color: hsl(0, 0%, 100%);
  position: absolute;
  bottom: 5px;
}
body .attribution a {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
}
body .attribution a:hover {
  color: hsl(227, 16%, 83%);
}

@media only screen and (max-width: 1400px) {
  body #wrapper {
    height: 70%;
    width: 60%;
  }
  body #wrapper #card {
    height: 100%;
  }
  body #wrapper #card #left {
    height: 100%;
  }
  body #wrapper #card #left h1 {
    margin-bottom: 20px;
    font-size: 2.3rem;
  }
  body #wrapper #card #left p {
    margin-bottom: 15px;
  }
  body #wrapper #card #left ul {
    margin-bottom: 20px;
  }
  body #wrapper #card #left ul li {
    font-size: 0.9rem;
  }
  body #wrapper #card #left #emailEntry {
    margin-bottom: 15px;
  }
  body #wrapper #card #left #emailEntry label {
    margin-bottom: 5px;
  }
  body #wrapper #card #left button {
    font-size: 0.8rem;
    text-align: center;
    vertical-align: middle;
  }
  body #wrapper #card #left #right #sign-up-mobile {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  body {
    background: hsl(0, 0%, 100%);
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  body #wrapper {
    width: 100%;
  }
  body #wrapper #card {
    flex-direction: column-reverse;
    padding: 0;
  }
  body #wrapper #card #left {
    width: 100%;
    padding: 20px 10px;
    margin: 0;
  }
  body #wrapper #card #left ul {
    margin-bottom: 30px;
  }
  body #wrapper #card #left ul li {
    font-size: 1rem;
  }
  body #wrapper #card #left #emailEntry {
    margin-bottom: 25px;
  }
  body #wrapper #card #right {
    width: 100%;
  }
  body #wrapper #card #right #desktop {
    display: none;
  }
  body #wrapper #card #right #mobile {
    display: block;
    width: 100%;
  }
  body .attribution {
    color: hsl(234, 29%, 20%);
    position: relative;
  }
  body .attribution a {
    color: hsl(235, 18%, 26%);
  }
  body .attribution a:hover {
    color: hsl(227, 55%, 25%);
  }
}/*# sourceMappingURL=style.css.map */