.sign-up-form {
  margin: 40px auto;
  max-width: 350px;
  background-color: #fff;
  border-radius: 5px;
  padding: 25px;
  box-shadow: 5px 4px 20px #000;
}

.sign-up {
  text-align: center;
  margin-bottom: 10px;
}

.sign-up-form input {
  width: 100%;
  height: 40px;
  font-size: 15px;
  margin: 5px 0px;
  border: 2px solid rgb(159, 158, 159);
  border-radius: 5px;
  padding: 10px;
}

.checkbox-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sign-up-form #check {
  width: 20px;
}

.checkbox-container label {
  width: 90%;
  line-height: 16px;
}

.sign-up-form .button {
  /* background-color: #051932; */
  background-color: #093778;
  border: none;
  color: #fff;
  transition: all 600ms;
}

.sign-up-form .button:hover {
  background-color: #09377800;
  border: 2px solid #093778;
  color: #000;
}

.sign-up-form p {
  text-align: center;
  padding-top: 5px;
  font-size: 15px;
}

#form-link {
  text-decoration: none;
  font-weight: 500;
}

#form-link:hover {
  text-decoration: underline;
}
