/* /vvllc-backend/assets/css/login-style.css */
input:-webkit-autofill {
  font-size: 20px;
  font-family: 'Oswald', sans-serif;
  -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.06) inset;
  color: #fff;
}

/* 🔥 Forge Background with Emblem */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: #000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

body::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('/vvllc-backend/assets/branding/vvllc-emblem.png') center center no-repeat;
  background-size: 80%;
  opacity: 0.15;
  z-index: 0;
}

/* 🔥 Universal Input Styling */
/* 🔥 Universal Input Styling */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[name="username"],
input[name="2fa_code"] {
  box-sizing: border-box;
  width: 360px;
  max-width: 360px;
  padding: 14px;
  margin: 12px auto;
  background: rgba(255, 100, 20, 0.035);
  border: 1px solid #ffa460;
  color: rgba(255, 100, 20, 0.65);
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
  border-radius: 6px;
  box-shadow: inset 0 0 4px rgba(255, 100, 20, 0.15);
  transition: background 9s ease, box-shadow 9s ease;
  letter-spacing: 1px;
  display: block;
  text-align: center;
}

input:hover,
input:focus {
  background: rgba(255, 100, 20, 0.25);
  box-shadow: inset 0 0 10px rgba(255, 140, 60, 0.3);
}

/* 🔥 Login Button */
button[type="submit"] {
  box-sizing: border-box;
  width: 100%;
  max-width: 360px;
  padding: 14px;
  margin: 12px auto;
  background: #3d3d3d;
  border: none;
  color: #fff;
  font-size: 20px;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: all .8s ease;
  display: block;
  text-align: center;
}

button[type="submit"]:hover {
  background-color: #ff3c00;
  box-shadow: 0 0 20px #ff3c00;
  color: #fff;
}

/* 🔥 Forgot Password Link */
a {
  font-size: 28px;
  color: #ff0000;
  text-decoration: none;
  text-shadow: 0 0 3px rgba(255,0,0,0.4);
  transition: color 0.2s ease-in-out;
}
a:hover {
  color: #ffffff;
}

/* 🎯 Form Layout */
form {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

h2 {
  font-size: 84px;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 100, 20, 0.5);
  margin-bottom: 10px;
  text-align: center;
}

.slogan {
  font-size: 48px;
  font-style: italic;
  text-align: center;
  color: #ff3c00;
  text-shadow: 0 0 4px rgba(255, 140, 0, 0.4);
  margin-bottom: 30px;
}

.error {
  color: #ff4d4d;
  font-size: 14px;
  margin-bottom: 10px;
}

