/* Genel ayarlar */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f7f9fc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #333;
}

form {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}

/* Form başlıkları */
label {
  font-weight: 600;
  color: #4a4a4a;
  margin-bottom: 6px;
  font-size: 15px;
}

input[type="text"],
select,
textarea,
input[type="checkbox"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
select:focus,
textarea:focus {
  border-color: #4a90e2;
  outline: none;
  box-shadow: 0 0 6px rgba(74, 144, 226, 0.2);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button[type="submit"] {
  background-color: #4a90e2;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #3a78d0;
}

button[type="submit"]:active {
  background-color: #356db8;
}

#sonuc,
#sonuc2 {
  margin-top: 20px;
  padding: 12px;
  border-radius: 6px;
  background-color: #f1f5f9;
  font-size: 15px;
  color: #333;
}

/* Ekstra sınıf */
.sonuc-stili {
  color: #4a90e2;
  font-weight: bold;
}

#name {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
}
