/* ====================================================
   Section: Global Body Styling
   - Sets a full-screen background using your image.
   - Uses flexbox to center the login container.
==================================================== */
body {
  background: url('/images/lion.png') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  color: white;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ====================================================
   Section: Login Container Styling
   - Provides a semi-transparent dark background for your login form.
   - Sets fixed width (300px) with padding and rounded corners.
==================================================== */
.login-container {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
  width: 300px;
  box-sizing: border-box;
}

/* ====================================================
   Section: Header Styling
   - Centers the header ("Retro Lion Login") and applies a gold color.
==================================================== */
h1 {
  text-align: center;
  margin-bottom: 20px;
  color: gold;
}

/* ====================================================
   Section: Input Field Styling
   - Styles for the username and password input fields.
   - Uses a blueish background (#304a60) with white borders.
   - Gold border/glow only on focus.
==================================================== */
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 2px solid white;
  border-radius: 5px;
  background-color: #304a60;
  color: white;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: gold;
  box-shadow: 0 0 8px gold;
  outline: none;
}

/* ====================================================
   Section: Login Button Styling
   - Green with glow only on focus.
==================================================== */
.login-button {
  width: 100%;
  padding: 12px;
  background-color: #008000 !important;
  border: 2px solid transparent !important;
  color: white !important;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: none !important;
  margin-bottom: 15px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.login-button:hover {
  background-color: #00a000 !important;
}

.login-button:focus {
  border-color: gold !important;
  box-shadow: 0 0 15px gold !important;
  outline: none;
}

/* ====================================================
   Section: Beta Bypass Button Styling
   - Red with glow only on focus.
==================================================== */
.bypass-button {
  width: 100%;
  padding: 12px;
  background-color: red !important;
  color: black !important;
  border: 2px solid transparent !important;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: none !important;
  margin-top: 15px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.bypass-button:hover {
  background-color: #cc0000 !important;
}

.bypass-button:focus {
  border-color: gold !important;
  box-shadow: 0 0 15px gold !important;
  outline: none;
}

/* ====================================================
   Section: Error Message Styling
==================================================== */
#login-error {
  color: red;
  margin-top: 10px;
  display: none;
  text-align: center;
}
