@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Libre Franklin", sans-serif;
  color: hsl(209, 33%, 12%);
  text-align: center;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

header {
  margin: 4rem 0;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 768px;
}

img {
  max-width: 100%;
}
@media (min-width: 768px) {
  img {
    max-width: 80%;
  }
}

h1 {
  font-weight: 300;
  color: hsl(0, 0%, 59%);
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

strong {
  font-weight: 700;
  color: hsl(209, 33%, 12%);
}

p {
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  p {
    font-size: 1.2rem;
  }
}

form {
  width: 90%;
}
@media (min-width: 768px) {
  form {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 1rem;
  }
}

input {
  border: 1px solid hsl(223, 87%, 63%);
  padding: 1rem 2rem;
  width: 100%;
  border-radius: 2rem;
}
input.error {
  border-color: hsl(354, 100%, 66%);
}
input::-moz-placeholder {
  color: hsl(223, 87%, 63%);
}
input::placeholder {
  color: hsl(223, 87%, 63%);
}

#error-msg {
  color: hsl(354, 100%, 66%);
  font-size: 0.8rem;
  margin: 0.5rem 0;
}
@media (min-width: 768px) {
  #error-msg {
    text-align: left;
    margin: 0.5rem 2rem;
  }
}

button {
  border: unset;
  background-color: hsl(223, 87%, 63%);
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1rem 2rem;
  border-radius: 2rem;
  color: white;
  margin: 0.5rem 0;
  box-shadow: 0 4px 10px 0 hsla(223, 87%, 63%, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (min-width: 768px) {
  button {
    margin: 0;
  }
}
button:hover, button:active, button:focus {
  background-color: hsl(223, 100%, 88%);
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .socials {
    margin: 0 0 2rem 0;
  }
}
.socials a {
  border: 1px solid hsl(223, 100%, 88%);
  width: 3rem;
  height: 3rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: al 0.3s ease;
}
.socials a:hover, .socials a:active, .socials a:focus {
  border: unset;
  background-color: hsl(223, 87%, 63%);
}
.socials a:hover svg, .socials a:active svg, .socials a:focus svg {
  fill: white;
}
.socials a svg {
  fill: hsl(223, 87%, 63%);
  transform: scale(0.75);
  transition: al 0.3s ease;
}
@media (min-width: 768px) {
  .socials a svg {
    transform: scale(0.9);
  }
}

.copyright {
  color: hsl(0, 0%, 59%);
}

footer {
  margin-top: auto;
  padding-top: 2rem;
}/*# sourceMappingURL=styles.css.map */