.form-container {
  padding: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  /* align-items: center; */
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #999;
  font-size: 14px;
  outline: none;
  background: #fff;
  border-radius: 8px;
}

input::placeholder {
  color: #666;
}

.form-group select {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid #999;
    font-size: 14px;
    outline: none;
    background: #fff;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='%23999' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}
.submit-btn {
  background-color: #7b3f3f;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 3px;
  cursor: pointer;
  height: 48px;
}

.submit-btn:hover {
  background-color: #6a3434;
}

.checkbox-row {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #333;
  justify-content: center;
}

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
