:root {
  --blue: hsl(223, 87%, 63%);
  --paleBlue: hsl(223, 100%, 88%);
  --lightRed: hsl(354, 100%, 66%);
  --gray: hsl(0, 0%, 59%);
  --veryDarkBlue: hsl(209, 33%, 12%);
}

body {
  margin: 0;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 600;
}

.main-container {
  width: 100%;
  height: 100vh;
  padding: 50px 10% 0px 10%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gray);
  margin: 15px 0px 0px 0px;
}

.title .bold {
  font-weight: 700;
  color: var(--veryDarkBlue);
}

.paragraph {
  color: var(--veryDarkBlue);
  font-weight: 300;
  font-size: 1.2rem;
  margin-top: 5px;
}

.form {
  width: 100%;
  display: flex;
  justify-content: center;
}

.form-control {
  display: flex;
  flex-direction: column;
}

.input {
  width: 350px;
  height: 35px;
  border-radius: 200px;
  border: 1px solid var(--gray);
  outline: none;
  margin-right: 10px;
  padding: 2px 10px;
  font-family: "Libre Franklin", sans-serif;
}

.input::placeholder {
  color: var(--gray);
}

.error-input {
  border: 1px solid var(--lightRed);
}

.input-label {
  margin-top: 10px;
  margin-left: 10px;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--lightRed);
  display: none;
}

.active-label {
  display: block;
}

.btn {
  width: 130px;
  height: 40px;
  border-radius: 50px;
  border: none;
  outline: none;
  background-color: var(--blue);
  color: white;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 300;
  box-shadow: 0px 2px 2px rgba(79, 125, 243, 0.5);
  cursor: pointer;
}

.dashboard-image {
  margin-top: 35px;
  width: 70%;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.share-icons {
  display: flex;
  list-style: none;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  border: 1px solid var(--paleBlue);
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.icon i {
  color: var(--blue);
}

.footer-copyright {
  color: var(--gray);
  font-weight: 300;
  margin-top: 5px;
  font-size: 0.8rem;
}

@media screen and (max-width: 768px) {
  .main-container {
    padding: 50px 25px;
  }

  .title {
    text-align: center;
    font-size: 1.8rem;
  }

  .paragraph {
    margin-top: 10px;
    font-size: 1rem;
  }

  .form {
    flex-direction: column;
  }

  .input {
    margin: 15px 0px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0px;
  }

  .active-label {
    margin-top: 10px;
    text-align: center;
  }

  .btn {
    width: 100%;
    margin-top: 10px;
  }

  .dashboard-image {
    margin-top: 35px;
    width: 100%;
  }
}
