body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  text-align: center;
}

h1 {
  color: #333;
  margin-top: 20px;
}

.container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin: 30px auto;
  width: 80%;
}

.setup-section,
.register-section {
  background: white;
  padding: 20px;
  width: 45%;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #007bff;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

label {
  font-weight: bold;
  margin: 10px 0 5px;
  display: block;
  text-align: left;
  width: 90%;
}

input,
select {
  width: 90%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  background: #007bff;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  width: 95%;
}

button:hover {
  background: #0056b3;
}

input[type="checkbox"] {
  width: auto;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .setup-section,
  .register-section {
    width: 90%;
    margin-bottom: 20px;
  }
}
