@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-Regular.ttf");
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("../../fonts/Roboto-Bold.ttf");
}
* {
  padding: 0px;
  margin: 0px;
  border: none;
  box-sizing: border-box;
}

body {
  background: hsl(234, 29%, 20%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Roboto";
}
body main {
  background: white;
  color: hsl(234, 29%, 20%);
}
body main #content {
  padding: 20px;
}
body main #content h1 {
  font-family: "Roboto-Bold";
  font-size: 2.5em;
  margin-bottom: 20px;
}
body main #content #list_elements {
  margin: 2em 0;
}
body main #content #list_elements p {
  display: flex;
  line-height: 1.5em;
  margin-bottom: 10px;
}
body main #content #list_elements p span {
  margin-right: 15px;
}
body main #content label {
  display: flex;
  justify-content: space-between;
  margin: 2em 0 10px;
  font-weight: bolder;
  font-size: 13px;
}
body main #content input {
  width: 100%;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 10px;
  padding: 20px;
  transition: background-color 0.3s;
}
body main #content #button_submit {
  background: hsl(234, 29%, 20%);
  color: white;
  font-size: medium;
  font-weight: bolder;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  margin: 1.5em 0;
  cursor: pointer;
}
body main #content #button_submit:hover {
  background: linear-gradient(to left, hsl(4, 100%, 67%), #FF6A3A, #E94B70);
  box-shadow: 3px 20px 50px hsla(4, 100%, 67%, 0.589);
}
@media (max-width: 700px) {
  body main {
    width: 375px;
  }
  body main #img_mobile {
    display: block;
  }
  body main #img_desktop {
    display: none;
  }
}
@media (min-width: 700px) {
  body main {
    display: flex;
    padding: 20px;
    background: white;
    border-radius: 20px;
  }
  body main h1 {
    margin-top: 0.5em;
    font-size: 3.5em !important;
  }
  body main #one_paragraph {
    line-height: 1.5em;
    width: 400px;
  }
  body main #img_desktop {
    display: block;
  }
  body main #img_mobile {
    display: none;
  }
}

.error {
  background: rgb(252, 205, 205);
  color: red;
  border: 1px solid rgba(255, 0, 0, 0.534) !important;
}

#text_error {
  display: none;
  color: rgba(255, 0, 0, 0.658);
}

section {
  background: white;
  padding: 30px;
  color: hsl(234, 29%, 20%);
}
@media (min-width: 700px) {
  section {
    border-radius: 20px;
  }
}
@media (max-width: 700px) {
  section img {
    margin-top: 8em;
  }
  section p {
    margin-bottom: 20em !important;
  }
}
section img {
  height: 40px;
  margin-bottom: 1em;
}
section h1 {
  font-size: 3em;
  line-height: 1em;
  width: 300px;
}
section p {
  width: 330px;
  margin: 1em 0;
  font-size: 14px;
  line-height: 1.4em;
}
section button {
  background: hsl(234, 29%, 20%);
  border-radius: 10px;
  color: white;
  width: 100%;
  padding: 15px;
  margin: 1em 0;
  cursor: pointer;
}
section button:hover {
  background: linear-gradient(to left, hsl(4, 100%, 67%), #FF6A3A, #E94B70);
  box-shadow: 3px 20px 50px hsla(4, 100%, 67%, 0.589);
}

.hidden {
  display: none !important;
}

/*# sourceMappingURL=index.css.map */
