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

body {
  background: #fafafa !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding-right: 1rem;
  padding-left: 1rem;
}

.form {
  margin-top: 500px;
  width: 100%;
  max-width: 32rem;
  font-size: 1.125rem;
}

.form label, .form input, .form textarea, .form button {
  display: block;
  width: 100%;
}

.form label {
  color: #101010;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.form input, .form textarea {
  font: inherit;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: border-color, box-shadow 0.2s;
}

.form textarea {
  min-height: 13rem;
  resize: vertical;
}

.form input:focus, .form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px #dddddd;
}

.form button {
  font-weight: 500;
  font-size: large;
  display: block;
  padding: 10px;
  background: #7ed957;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.form button:hover {
  outline: none;
  background: #5ABE2F;
}

p{
	padding-bottom: 25px;
}