.container {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px 60px;
  justify-content: center;
  gap: 40px;
}
.form-section {
  flex: 1 1 400px;
  max-width: 600px;
}
.form-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.form-row input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
}
select {
  padding: 10px;
  font-size: 16px;
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 14px;
  margin-top: 10px;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
}
.but {
  display: inline-block;
  width: 100px;
  background-color: #f7941d;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  text-align: center;
  padding: 5px 10px;
}
.image-section {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
}
.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.yellow-arc {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center, transparent 50%, #FFD400 51%);
  border-radius: 50%;
  z-index: -1;
}
.dots {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#c8478c 1px, transparent 1px);
  background-size: 10px 10px;
  z-index: -1;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 20px;
  }
  .form-row {
    flex-direction: column;
  }
  .checkbox-group {
    flex-direction: column;
  }
}
/*# sourceMappingURL=form.css.map */