* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.form-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

form {
  max-width: 600px;
  width: 100%;
  border: 2px solid #bca6ff;
  border-radius: 10px;
  padding: 20px;
  flex-direction: wrap;
}

.form h1 {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 400px) {
  .form h1 {
    font-size: 24px;
  }
}

.form input, .form textarea, .form select {
  font-size: 20px;
  padding: 8px 10px;
  width: 100%;
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.6);
  border: #bca6ff 2px solid;
  border-radius: 5px;
}
@media (max-width: 400px) {
  .form input, .form textarea, .form select {
    font-size: 16px;
  }
}
.form button {
  background-color: #8763f6;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
}
.form textarea {
  resize: none;
  height: 100px;
}
.form input:hover, .form textarea:hover, .form select:hover {
  border-color: #3d00f4;
}
.form button:hover {
  background-color: #3d00f4;
}
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: #3d00f4;
}/*# sourceMappingURL=style.css.map */