/* style.css */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(270deg, #3C1643 25.73%, #7D4C86 52.95%, #3C1643 78.69%);
  margin: 0;
  padding: 0;
  color: #fff;
}

.container {
  max-width: 500px;
  margin: 50px auto;
  background: #241028;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.8s ease-in-out;
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
  background: linear-gradient(180deg, #FFB800 0.01%, #FBA90B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #FBA90B;
}

input[type="text"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  background-color: #491C52;
  color: #fff;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

input:focus,
textarea:focus {
  background-color: #5c2d64;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button[type="submit"] {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background: linear-gradient(180deg, #FFB800 0.01%, #FBA90B 100%);
  color: #241028;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background: #ffcd33;
}

.alert-message.success {
  display: none;
  margin-top: 25px;
  padding: 20px;
  background-color: #FBA90B;
  color: #241028;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

/* Simple fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ... üst kısımlar sabit kalsın ... */

.form-group {
  margin-bottom: 22px;
  position: relative;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #FBA90B;
  font-size: 14px;
  letter-spacing: 0.4px;
}

input[type="text"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 14px 16px 14px 16px;
  border: 2px solid #7D4C86;
  border-radius: 10px;
  background-color: #3C1643;
  color: #fff;
  font-size: 15px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease-in-out;
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: #b984c6;
  opacity: 0.8;
  font-style: italic;
}

input:focus,
textarea:focus {
  border-color: #FBA90B;
  background-color: #491C52;
  outline: none;
  box-shadow: 0 0 0 2px rgba(251, 169, 11, 0.3);
}

textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}
