body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.my-form {
  padding: 2em;
  color: black;
  max-width: 500px;
  width: 100%;
  background-color: #fff !important;
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  font-family: 'Work Sans', sans-serif;
}

h1 {
  font-weight: bold;
  text-align: center;
  font-size: 2em;
  font-family: 'Work Sans', sans-serif;
}

.form-control {
  background-color: inherit;
  color: black;
  border: none;
  border-bottom: 1px solid black;
  border-radius: 0;
  padding-left: 0;
}

.form-control:focus {
  background-color: inherit;
  color: black;
  box-shadow: none;
  border-color: black;
}

.btn {
  border-radius: 0;
  width: 100%;
  font-weight: bold;
}

.btn-light {
  background-color: black;
  color: #fff;
}

.btn-light:hover {
  background-color: gray;
}

.my-form p {
  color: black;
  text-align: center;
}

.my-form p a {
  color: darkgrey;
  text-decoration: none;
}

.my-form p a:hover {
  color: black;
}
