body {
  background-color: #f7c66b;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  min-height: 100vh;
  overflow: auto;
  font-family: "Delius Swash Caps", Arial, Helvetica, sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100vw;
}

.image-container {
  position: relative;
  flex: 1;
}

.image-container img {
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

.form-container {
  height: 100vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 2vw;
  justify-items: center;
  overflow-y: hidden;
  border: 20px double #39221a;
}

input[type="checkbox"] {
  accent-color: #d17b49;
}

input[type="radio"] {
  accent-color: #d17b49;
}

.price-banner {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #d17b49;
  color: white;
  border-radius: 50%;
  border: 10px double brown;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

h3 {
  margin-top: 15px;
}

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

select,
label {
  display: block;
  margin-top: 10px;
}
