@charset "utf-8";
/* CSS Document */

body {
  font-family: Arial, sans-serif;
  background-color: #F0FBFC;
  margin: 0;
  padding: 0;
}

.form-container {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 30px auto;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-image img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-form {
  padding: 20px;
  background-color: #ffffff;
}

.contact-form h2 {
  color: #3e4a34;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #3e4a34;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form button {
  margin-top: 20px;
  width: 100%;
  background-color: #c0892c;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #a97423;
}

@media (min-width: 768px) {
  .form-container {
    flex-direction: row;
  }

  .form-image, .contact-form {
    width: 50%;
  }

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