﻿/* Ortaçağ temalı arka plan */
body {
  margin: 0;
  padding: 0;
  font-family: 'Cinzel Decorative', serif;
  background: url('knight-background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #f0e6d2;
}

/* Giriş kutusu */
.login-container {
  max-width: 420px;
  margin: 100px auto;
  background-color: rgba(15, 15, 15, 0.85);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
  text-align: center;
  backdrop-filter: blur(5px);
}

/* Logo */
.logo img {
  width: 120px;
  margin-bottom: 20px;
}

/* Başlık */
h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffd700;
  letter-spacing: 1px;
}

/* Form düzeni */
form {
  display: flex;
  flex-direction: column;
}

label {
  margin: 10px 0 5px;
  text-align: left;
  font-weight: bold;
}

input[type="text"],
input[type="password"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #2e2e2e;
  color: #fff;
  font-size: 16px;
}

input::placeholder {
  color: #ccc;
}

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

button:hover {
  background-color: #d4af37;
}

/* Bağlantılar */
.links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.links a {
  color: #f0e68c;
  text-decoration: none;
  font-size: 14px;
}

.links a:hover {
  text-decoration: underline;
}
