/* --- GENEL SAYFA YAPISI --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #050505; /* Simsiyah Arka Plan */
  color: #ffffff;
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* --- FORM KUTUSU --- */
.form {
  display: flex;
  flex-direction: column;
  gap: 25px; /* Elemanlar arası boşluk */
  background: rgba(255, 255, 255, 0.02); /* Çok hafif bir kutu belirteci */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Derinlik hissi */
  min-width: 320px;
  border: 1px solid rgba(3, 233, 244, 0.1);
}

/* --- DELAY LABEL & INPUT --- */
/* Label içindeki metin ve input'u alt alta dizmek için */
.form > label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #03e9f4;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input[name="delay"] {
  background-color: transparent;
  border: 1px solid #03e9f4;
  color: #fff;
  padding: 10px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border-radius: 5px;
  box-shadow: 0 0 5px #03e9f433;
  transition: 0.3s;
}

input[name="delay"]:focus {
  box-shadow: 0 0 15px #03e9f4;
}

/* --- FIELDSET (State Seçimi) --- */
fieldset {
  border: 1px solid #03e9f4;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  justify-content: space-around; /* Radio butonları yay */
}

legend {
  padding: 0 10px;
  color: #03e9f4;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Radio Button Kapsayıcıları */
fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.3s;
}

fieldset label:hover {
  text-shadow: 0 0 8px #fff; /* Üzerine gelince parlasın */
}

/* Radio Butonların Kendisi (Modern Tarayıcılar İçin) */
input[type="radio"] {
  accent-color: #03e9f4; /* Mavi tik rengi */
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* --- BUTON (Create Notification) --- */
button[type="submit"] {
  background: transparent;
  color: #03e9f4;
  border: 2px solid #03e9f4;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  box-shadow: 0 0 10px #03e9f433;
  margin-top: 10px;
}

button[type="submit"]:hover {
  background: #03e9f4;
  color: #050505;
  box-shadow: 0 0 20px #03e9f4, 0 0 40px #03e9f4;
}

/* --- GO BACK LINK --- */
a {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

a:hover {
  color: #03e9f4;
  border-bottom: 1px solid #03e9f4;
  text-shadow: 0 0 5px #03e9f4;
}