@import url('https://fonts.googleapis.com/css?family=Poppins:200i,400&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: white;
  margin: 0;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-image: linear-gradient(
      115deg,
      rgba(67, 6, 129, 0.9),
      rgba(67, 6, 130, 0.6)
    ),
    url(https://images.unsplash.com/photo-1527689368864-3a821dbccc34?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

header {
  text-align: center;
  color: 
}

label {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
}

.container {
  width: 100%;
  margin: 3.125rem auto 0 auto;
}

form {
  background: rgba(67, 6, 129, .8);
  padding-top: 2.5rem;
  padding-left: 1rem;
  border-radius: 0.25rem;
  margin-left: 30%;
  margin-right: 30%;
}

.form-group {
  margin: 0 auto 1.25rem auto;
  padding: 0.25rem;
}

.form-control {
  display: block;
  width: 93%;
  height: 2.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
}

.input-radio,
.input-checkbox {
  display: block;
  margin-right: .75rem;
  min-height: 1rem;
  min-width: 1rem;
}

.input-textarea {
  min-height: 100px;
  width: 30rem;
  resize: vertical;
}

.submit-button {
  display: block;
  width: 97.825%;
  padding: 0.75rem;
  background: green;
  color: white;
  border-radius: 2px;
  cursor: pointer;
}