/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: "Arial", sans-serif;
  background: #333333; /* Dark grey background */
  color: #e4ff00; /* Yellow text */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

/* Login Container */
.login-container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  text-align: center;
}

/* Login Box */
.login-box {
  background-color: rgba(51, 51, 51, 0.8); /* Semi-transparent dark grey */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Heading */
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #e4ff00; /* Yellow heading */
}

/* Input Group */
.input-group {
  margin-bottom: 20px;
  position: relative;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #e4ff00; /* Yellow labels */
}

.input-group input {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background-color: rgba(
    255,
    255,
    255,
    0.1
  ); /* Semi-transparent input background */
  color: #e4ff00; /* Yellow text in inputs */
  outline: none;
  transition: background-color 0.3s ease;
}

.input-group input:focus {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Login Button */
.login-btn {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #333333; /* Dark grey text on button */
  background: #e4ff00; /* Yellow button */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.login-btn:hover {
  transform: scale(1.05);
  background: #ffff33; /* Slightly brighter yellow on hover */
}

/* Error Message */
.error {
  color: #ff4d4d; /* Red error messages */
  margin-bottom: 15px;
  font-size: 0.9rem;
  text-align: left;
}
