form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 5rem;
  overflow: hidden;
}

.title {
  font-size: 2.2rem;
  color: #444;
  margin-bottom: 10px;
}

.input-field {
  width: 400px;
  height: 55px;
  background-color: #e0e0e0;
  margin: 10px 0;
  border-radius: 55px;
  display: grid;
  grid-template-columns: 15% 70% 15%;
  padding: 0 0.4rem;
}

.input-field i {
  text-align: center;
  line-height: 55px;
  color: #8a8a8a;
  font-size: 1.1rem;
}

.input-field input {
  background: none;
  outline: none;
  border: none;
  line-height: 1;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

#togglePassword {
  text-align: center;
  color: #8a8a8a;
}

.pass {
  margin: 12px 0;
  color: var(--primary-font);
}

.btn.send {
  width: 400px;
  background-color: var(--primary-color);
  color: #fff;
}

.btn.send:hover {
  background-color: var(--text-color);
}

@media (max-width: 768px) {
  form {
    padding: 0 10px;
  }

  .title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .input-field {
    width: 90%;
  }

  .title {
    font-size: 1.5rem;
  }

  .input-field input {
    font-weight: 500;
    font-size: 0.9rem;
  }

  .btn.send {
    width: 90%;
  }
}
