body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  height: 100vh;
  margin: 0;
}

.container {
  display: flex;
  justify-content: space-between;
  width: 90%;
  height: 100%;
}

.form-container {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.response-container {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.response-container textarea {
  width: 100%;
  height: 60%;
  resize: none;
}

input, button, textarea {
  margin: 5px 0;
  padding: 5px;
  width: 100%;
  box-sizing: border-box;
}

button {
  cursor: pointer;
}
