.form-group {
  padding-top: 8px;
  padding-bottom: 8px;
}

.form-label {
  color: rgb(191,191,191);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form-control {
  border: none;
  background: rgb(33,33,33);
  border-radius: 0;
  height: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}

.form-control::placeholder {
  opacity: 0;
  color: #858585;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form-control:focus {
  color: rgb(191,191,191);
  background-color: rgb(33,33,33);
  border-color: #7C110D;
  border: none;
  outline: 0;
  box-shadow: none;
}

.submit-button {
  width: 100%;
  height: 50px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  border: none;
}

.submit-button:hover, focus {
  color: #fff;
  background: var(--bs-secondary);
}

textarea.form-control {
  min-height: 100px;
}

