body {
  font-family: 'Lato', sans-serif;
  background: linear-gradient(to right, #f7c3f47d, #f798f27d);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.logo {
  width: 50px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
.container {
  background-color: #f7c3f47d;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 400px;
  text-align: center;
  margin-top: 60px;
}
h1 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #333;
}
label {
  display: block;
  margin: 15px 0 8px;
  text-align: left;
  font-weight: 600;
}
input, select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}
button {
  background-color: #b080d9;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}
button:hover {
  background-color: #9966cc;
}
.result {
  margin: 25px 0;
  font-size: 18px;
  min-height: 40px;
}
#talepEtButton {
  display: none;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .container {
      width: 90%;
      margin-top: 80px;
  }
}
option[value=""][disabled] {
    display: none;
}