/* style.css */

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  padding: 50px;
}

.form-container {
  background-color: white;
  max-width: 700px;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 15px;
  margin-bottom: 5px;
  color: #444;
  font-weight: bold;
}

input,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  resize: vertical;
}

button {
  margin-top: 20px;
  padding: 12px;
  background-color: #87cefa;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #87cefa;
}

#contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.form-wrapper {
  max-width: 700px;
  width: 100%;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

.form-wrapper form {
  display: flex;
  flex-direction: column;
}

.form-wrapper label {
  margin-top: 15px;
  font-weight: 600;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  margin-top: 6px;
  padding: 10px;
  font-size: 1em;
  border-radius: 5px;
  border: 1px solid #ccc;
  resize: vertical;
}

.form-wrapper button {
  margin-top: 20px;
  padding: 12px;
  background-color: #4fb99f;
  color: white;
  font-size: 1em;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-wrapper button:hover {
  background-color: #3d9888;
}

/* Responsive destek */
@media (max-width: 600px) {
  .form-wrapper {
    padding: 20px;
  }
}
