body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: black;
  color: whitesmoke;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
  /* background-color: blue; */
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: rgb(98, 88, 245);
}

.form-parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: red; */
}

.form-inputs {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
  width: 80%;
}

.form-label {
  display: inline-block;
  margin-bottom: 6px;
  color: rgb(98, 88, 245);
  font-weight: bold;
  font-size: larger;
}

.form-input {
  display: block;
  padding-left: 10px;
  outline: none;
  border-radius: 2px;
  height: 40px;
  width: 100%;
  border: none;
}

input {
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 50px;
  height: 30px;
  background-color: black;
  color: #fff;
}


textarea {
  border-radius: 5px;
  margin-bottom: 50px;
  padding: 10px;
  height: 50px;
  background-color: black;
  color: #fff;
}

.form-btn {
  padding: 10px;
  font-size: 1.1rem;
  background-color: rgb(98, 88, 245);
  cursor: pointer;
  color: #fff;
  border-radius: 1em;
  height: 60px;
  font-weight: bold;
}

.form-btn:hover {
  box-shadow: 0 0 2em 0.5em rgb(74, 67, 173);
}

.leave-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.leave-btn {
  text-align: center;
  text-decoration: none;
  padding: 10px;
  font-size: 1.1rem;
  background-color: rgb(98, 88, 245);
  cursor: pointer;
  color: #fff;
  border-radius: 1em;
  font-weight: bold;
  width: 200px;
}