@font-face {
  font-family: 'UnifrakturCook';
  src: url('fonts/UnifrakturCook-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Macondo';
  src: url('fonts/Macondo-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #2e2a24, #1c1a18);
  color: #e0dbc3;
  font-family: 'UnifrakturCook', serif;
  text-align: center;
}

.menu {
  background-color: #1f1c19;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.menu a {
  color: #dac79b;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1.2rem;
}

.menu a:hover {
  color: #fff2c7;
  text-shadow: 0 0 5px #dac79b;
}

.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 60px;
}

.logo {
  max-width: 300px;
  margin-bottom: 30px;
}

h1 {
  font-size: 3rem;
  margin: 0;
  color: #f5e6a4;
}

p {
  font-family: 'Macondo', cursive;
  font-size: 1.3rem;
  color: #cfc6b8;
  margin-bottom: 20px;
}

.glow {
  text-shadow: 0 0 5px #dac79b, 0 0 10px #bda968, 0 0 15px #9e8750;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 300px;
}

.login-form input {
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background-color: #3a352e;
  color: #f5e6a4;
  font-family: 'Macondo', cursive;
}

.login-form input::placeholder {
  color: #a89e8b;
}

.login-form button {
  padding: 10px;
  font-size: 1.2rem;
  background-color: #dac79b;
  color: #1f1c19;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'UnifrakturCook', serif;
}

.login-form button:hover {
  background-color: #fff2c7;
  box-shadow: 0 0 10px #dac79b;
}
