@import url("https://fonts.googleapis.com/css2?family=Chivo:wght@300;500&display=swap");
#ok--msg, #error--msg {
  margin: 0;
  padding-top: 0.3rem;
  padding-left: 1.5rem;
  font-weight: 300;
  font-size: 0.75rem;
}

* {
  box-sizing: border-box;
  font-family: "Chivo", sans-serif;
}

body {
  margin: 0;
  background-color: #121725;
  height: 100vh;
  display: flex;
  justify-content: right;
  align-items: center;
}

.app {
  background-image: url(../assets/desktop/image-host.jpg);
  background-repeat: no-repeat;
  background-size: 55.5rem 40rem;
  background-position: right;
  position: relative;
  display: grid;
  grid-template-columns: 45.1875rem 34.5rem;
  grid-template-rows: 8.1875rem 31.8125rem;
}

.logo {
  position: absolute;
  top: -1.7rem;
  left: 0;
}

.dots {
  position: absolute;
  bottom: -3.7rem;
  right: 0;
}

.main {
  grid-column: 1/2;
  grid-row: 2/-1;
  background-color: #121725;
  width: 45.18rem;
  padding-top: 5.5rem;
  padding-right: 3.625rem;
}
.main h1 {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 3.25rem;
  line-height: 3.875rem;
  color: #54E6AF;
  margin: 0;
  margin-bottom: 1.5rem;
}
.main h1 span {
  color: #FFFFFF;
}
.main p {
  font-size: 1.125rem;
  color: #C2CBE5;
  line-height: 1.75rem;
  width: 27.8125rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.form {
  position: relative;
  width: 26.6875rem;
  margin-bottom: 4rem;
}
.form input {
  border: none;
  width: 100%;
  background-color: #2C344B;
  border-radius: 1.75rem;
  padding: 1.25rem 2rem;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.5;
}
.form input:focus {
  color: #FFFFFF;
  opacity: 1;
  outline: none;
}
.form ::-moz-placeholder {
  color: #FFFFFF;
  font-size: 0.875rem;
  line-height: 1.75rem;
  font-weight: 400;
}
.form ::placeholder {
  color: #FFFFFF;
  font-size: 0.875rem;
  line-height: 1.75rem;
  font-weight: 400;
}
.form .btn {
  position: absolute;
  top: 0.3125rem;
  right: 0.3125rem;
  border: none;
  background-color: #54E6AF;
  color: #121725;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75rem;
  padding: 0.5625rem 1.6875rem;
  border-radius: 1.75rem;
}
.form .btn:hover {
  cursor: pointer;
  background-color: #B3FFE2;
}

#error--msg {
  color: #FB3E3E;
}

#ok--msg {
  color: #FFFFFF;
}

.podcasts--apps {
  width: 33.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1280px) {
  body {
    display: block;
  }
  .app {
    background-image: url(../assets/tablet/image-host.jpg);
    background-size: 30.6875rem 47.9375rem;
    background-position: right;
    display: grid;
    grid-template-columns: 39.6875rem 5.875rem;
    grid-template-rows: 16.125rem 31.8125rem;
    margin-left: 2.4375rem;
  }
  .logo {
    top: 3.125rem;
    left: 0;
  }
  .dots {
    bottom: -14rem;
    left: 0;
  }
  .main {
    width: 39.6875rem;
    padding-top: 5.5rem;
    padding-right: 0;
  }
  .main h1 {
    font-size: 3rem;
    line-height: 3.5rem;
    margin-bottom: 1.5rem;
  }
  .main p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    width: 27.8125rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 710px) {
  body {
    justify-content: right;
    align-items: baseline;
    background-image: url(../assets/mobile/image-host.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .app {
    margin: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(18, 23, 37, 0.75);
    background-image: none;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
  }
  .logo {
    position: static;
    margin: 3.8rem 0;
  }
  .dots {
    visibility: hidden;
  }
  .main {
    position: relative;
    width: 20.4375rem;
    padding: 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main h1 {
    font-size: 1.625rem;
    line-height: 2.375rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  .main p {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    width: 20.4375rem;
    margin-bottom: 2.0625rem;
    text-align: center;
  }
  .podcasts--apps {
    width: 19.6875rem;
    gap: 0.5rem;
  }
  .podcasts--apps img {
    -o-object-fit: contain;
       object-fit: contain;
    max-height: 1.06rem;
    max-width: 4.56rem;
  }
  .form {
    position: absolute;
    top: 18.125rem;
    width: 20.4375rem;
    margin-bottom: 4rem;
  }
  .form input {
    padding: 1rem 2rem;
  }
  .form .btn {
    position: absolute;
    top: 3.875rem;
    right: 0;
    padding: 0.628rem 0;
    width: 20.4375rem;
  }
  #error--msg, #ok--msg {
    margin-top: 4rem;
  }
}/*# sourceMappingURL=main.css.map */