body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background: url('../images/wildwest_bg.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: url('../images/parchment_bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 30px;
  border: 2px solid #5e3d1a;
  border-radius: 12px;
  box-shadow: 0 0 25px #00000088;
  width: 360px;
  text-align: center;
}

.site-title {
  font-size: 36px;
  color: #3e2a1e;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 1px 1px #e6d5b3;
}

.skull {
  font-size: 28px;
  margin-left: 8px;
}

form label {
  display: block;
  margin: 12px 0 4px;
  color: #4b2f18;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #8b5e3c;
  background-color: #fffef4;
}

button {
  background-color: #3e2a1e;        /* dark brown */
  color: #fff8dc;                   /* light tan */
  font-weight: bold;
  font-family: 'Old Standard TT', serif;
  padding: 10px;
  font-size: 18px;
  width: 100%;
  border: 2px solid #2a1b11;
  border-radius: 0;                 /* squared edges */
  text-transform: uppercase;
  box-shadow: inset 0 0 5px #00000055;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}
button:hover {
  background-color: #1f140c;
  color: #f5deb3;
}

.error {
  color: #5a2b0c;
  background-color: #d2a679;
  border: 1px solid #8b5e3c;
  padding: 8px 12px;
  margin-top: 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  max-width: 100%;
}

.skull-icon {
  width: 80px;
  height: auto;
  vertical-align: middle;
  margin-left: 8px;
}

