form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0px 0px 50px 0px;
  gap: 10px;
  margin: 2% auto 20px auto;
  border-radius: 10px;
  overflow-x: hidden;
  width: 90%;
}

form > video {
  width: 600px;
  margin-bottom: -60px;
}

form > input,
form > textarea {
  width: 40%;
  min-width: 300px;
  padding: 10px;
  background-color: #ffffff17;
  border: 1px solid rgba(255, 255, 255, 0.263);
  border-radius: 5px;
  color: white;
  font-size: 18px;
  box-shadow: none;
  outline: none;
}

form label {
  width: 40%;
  min-width: 300px;
  font-weight: 300;
}

h4 {
  text-align: center;
  margin: 20px 0 34px 0;
  font-weight: 100;
  font-size: 22px;
  padding: 0 20px;
}

@media (max-width: 1199.98px) {
  form > input,
  form > textarea {
    width: 90%;
  }

  form label {
    width: 90%;
  }
}

form button {
  margin: 20px 0;
  padding: 20px 50px;
  width: 220px;
  text-align: center;
  border-radius: 5px;
  border: none;
  background-color: #ff6e4a;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: 0.5s all;
  color: white;
  cursor: pointer;
  font-size: 22px;
  font-weight: 400;
}

form button:hover {
  scale: 1.05;
}
