.form-container {
  max-width: 40rem;
  margin: 4rem auto;
  padding: 3rem;
  background: white;
  border-radius: 0.6rem;
  box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.1);
  font-size: 1.6rem;
}
.form-container h1 {
  margin-bottom: 2rem;
  text-align: center;
  color: #745edd;
}
.form-container .form-group {
  margin-bottom: 1.6rem;
}
.form-container .form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: bold;
  color: #90aab8;
}
.form-container .form-group input {
  width: 100%;
  padding: 0.8rem;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 0.6rem;
}
.form-container .form-group input:focus {
  border-color: #745edd;
  outline: none;
}
.form-container .form-group input[type=checkbox] {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.6rem;
  transform: translateY(3px);
}
.form-container .form-group .form-error {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  color: red;
}
.form-container .btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to right, #745edd, #fbd220);
  color: white;
  font-size: 1.6rem;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.form-container .btn-submit:hover {
  background: linear-gradient(to right, #fbd220, #745edd);
}
.form-container .form-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.4rem;
}
.form-container .form-footer a {
  color: #745edd;
  text-decoration: underline;
}
.form-container .form-footer a:hover {
  color: #5034d4;
}

/*# sourceMappingURL=form.css.map */
