:root {
  --Blue: hsl(223, 87%, 63%);
  --Pale-Blue: hsl(223, 100%, 88%);
  --Pale-Blue-Alpha: rgba(194, 211, 255, 0.35);
  --Light-Red: hsl(354, 100%, 66%);
  --Gray: hsl(0, 0%, 59%);
  --Very-Dark-Blue: hsl(209, 33%, 12%);
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Libre Franklin", sans-serif;
}

a {
  outline: 0;
}

a:link, a:visited, a:active {
  text-decoration: none;
}

section {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section .container {
  margin: 60px 0 60px;
  width: 45%;
}

section .container .logo {
  margin: auto;
  width: 100%;
  height: 50px;
  background: url("./images/logo.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px;
}

section .container h2 {
  text-align: center;
  color: var(--Gray);
  font-weight: 300;
  font-size: 2.3rem;
  margin-bottom: 10px;
}

section .container h2 span {
  color: var(--Very-Dark-Blue);
  font-weight: 700;
}

section .container p {
  text-align: center;
  font-weight: 600;
  color: var(--Very-Dark-Blue);
  margin-bottom: 20px;
}

section .container .form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section .container .form-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

section .container .form-container form input {
  height: 50px;
  border-radius: 50px;
  outline: 0;
  border: 0;
}

section .container .form-container form #email {
  -webkit-box-flex: 0.7;
      -ms-flex: 0.7;
          flex: 0.7;
  padding: 0 20px;
  border: 1px solid var(--Pale-Blue);
  color: var(--Very-Dark-Blue);
}

section .container .form-container form #button {
  -webkit-box-flex: 0.3;
      -ms-flex: 0.3;
          flex: 0.3;
  margin-left: 15px;
  background-color: var(--Blue);
  color: white;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 0 5px 5px var(--Pale-Blue-Alpha);
          box-shadow: 0 0 5px 5px var(--Pale-Blue-Alpha);
}

section .container .form-container form #button:hover {
  cursor: pointer;
}

section .container #error-msg {
  visibility: hidden;
  padding-left: 20px;
  text-align: left;
  color: var(--Light-Red);
  margin: 10px 0 60px;
  font-size: 0.8rem;
  font-style: italic;
}

section .container #illustration img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

footer .icon-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0;
}

footer .icon-container .ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  border: 1px solid var(--Pale-Blue);
  margin-left: 15px;
  color: var(--Blue);
}

footer .icon-container .ico:hover {
  cursor: pointer;
  color: white;
  background-color: var(--Blue);
  border: 1px solid var(--Blue);
}

footer .copyright {
  font-size: 0.8rem;
  color: var(--Gray);
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  section .container {
    width: 100%;
  }
  section .container h2 {
    display: block;
    font-size: 1.5rem;
  }
  section .container p {
    margin-bottom: 50px;
  }
  section .container .form-container {
    padding: 0 30px;
  }
  section .container .form-container form {
    height: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section .container .form-container form #email,
  section .container .form-container form #button {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  section .container .form-container form #button {
    margin: 15px 0 0;
  }
  section .container #error-msg {
    padding-left: 30px;
  }
  section .container #illustration {
    padding: 0 15px;
  }
}
/*# sourceMappingURL=styles.css.map */