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

body {
  font-family: "Libre Franklin", sans-serif;
}

.container {
  max-width: 1440px;
  width: 90%;
  margin: auto;
  text-align: center;
}

header {
  padding-top: 4rem;
}

h1 {
  color: #969696;
  font-weight: 300;
  font-size: 42px;
  margin-top: 2.5rem;
}

.bold-text {
  color: #151f29;
  font-weight: 700;
}

h4 {
  padding-top: 1rem;
  color: #151f29;
  font-weight: 300;
  font-size: 20px;
}

form {
  margin-top: 2rem;
}

.form-inputs-container {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

#email-input {
  width: 420px;
  height: 55px;
  border-radius: 30px;
  border: 1px solid #c2d3ff;
  padding-left: 1.5rem;
  font-size: 18px;
}

#email-input::placeholder {
  color: #969696;
}

.error-message {
  color: #fd6f7e;
  text-align: left;
  font-style: italic;
  position: absolute;
  top: 110%;
  left: 1.5rem;
  display: none;
}

#email-input.error-border {
  border: 1px solid #fd6f7e;
}

.submit-btn {
  background-color: #4f7df3;
  color: white;
  border: none;
  width: 210px;
  height: 55px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 30px;
  box-shadow: 1px 2px 10px -3px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 1px 2px 10px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 2px 10px -3px rgba(0, 0, 0, 0.75);
  transition: opacity .2s ease-in;
}

.submit-btn:hover {
  opacity: .9;
}

.dashboard-img {
  display: block;
  margin: 3rem auto;
  width: 650px;
}

.social-links-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
}

.social-link-li {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid #4f7df3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease-in;
}

.social-link-li:hover {
  background-color: #4f7df3;
}

i {
  color: #4f7df3;
  transition: all .2s ease-in;
}

i:hover {
  color: white;
}

footer {
  margin: 2rem 0rem;
  color: #969696;
}

/* 



Media Queries



*/

@media screen and (max-width: 700px) {
  h1 {
    font-size: 32px;
  }

  .form-inputs-container {
    flex-direction: column;
    column-gap: 0px;
    align-items: stretch;
  }

  .input-wrapper {
    width: 100%;
    align-items: stretch;
    text-align: initial;
  }

  #email-input {
    width: 100%
  }

  .error-message {
    text-align: center;
    padding-left: 0;
    position: static;
    padding-top: 10px;
  }

  .submit-btn {
    width: 100%;
    margin-top: 1rem;
  }

  .dashboard-img {
    width: 100%;
  }

}