@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

body {
  font-family: "Outfit", serif;
  background-color: #f4f4f4;
  margin: 0 auto;
  padding: 0;
  height: 100vh;
  width: 50%;
}

form {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label, select, input {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

input[type="submit"] {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

.space {
  height: 50px;
}

@media (max-width: 768px) {
  body {
    width: 90%;
  }
}
