body {
  font-family: "Josefin Sans", sans-serif;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
}

.order-section {
  max-width: 900px;
  margin: 50px auto;
  background: #e3e3e3;
  padding: 40px;
}

.order-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.order-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.order-image {
  flex: 1;
  background: white;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.order-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input[type="text"],
select,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  width: 100%;
  font-family: inherit;
  font-size: 14px;
}

.radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 5px 0;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-top: 5px;
}

.submitBtn {
  background-color: #d1ab3e;
  color: #333;
  border: none;
  padding: 12px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
}

.submitBtn:hover {
  background-color: #bc9935;
}

.error-msg {
  color: red;
  font-size: 12px;
  display: block;
  margin-top: -10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .order-container {
    flex-direction: column;
  }
  .order-section {
    margin: 20px;
    padding: 20px;
  }
}
