* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #FFF8F0;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.form-container, .info-container {
  flex: 1;
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 18px;
  padding-top: 20px;
}

.form-container {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #FFFEFC;
}

h2 {
  color: #5C4D3C;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.5px;
}

h3 {
  color: #5C4D3C;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.5px;
}

.input-row {
  display: flex;
  gap: 20px;
}

.field-group {
  margin-bottom: 20px;
  flex: 1;
}

.field-group h4 {
  margin-bottom: 8px;
  color: #5C4D3C;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

input, select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #E8DBC5;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
  background-color: #FFFCF8;
  color: #5C4D3C;
}

input:focus, select:focus {
  outline: none;
  border-color: #D4A373;
  box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2);
}

input::placeholder {
  color: #B8A99A;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

button[type="submit"] {
  background-color: #D4A373;
  color: white;
}

button[type="submit"]:hover {
  background-color: #BC8A5F;
  transform: translateY(-2px);
}

button[type="reset"] {
  background-color: #F0E6D2;
  color: #5C4D3C;
}

button[type="reset"]:hover {
  background-color: #E8DBC5;
  transform: translateY(-2px);
}

#infoDisplay {
  background: #FFFCF8;
  padding: 25px;
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid #E8DBC5;
}

#infoDisplay p {
  margin-bottom: 15px;
  color: #5C4D3C;
  font-size: 15px;
  line-height: 1.6;
}

#infoDisplay strong {
  color: #5C4D3C;
  display: inline-block;
  width: 90px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .form-container {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  
  .form-container, .info-container {
    padding: 30px;
  }
}