/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
   background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #fff;
}

h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
  color: #ff4d4d; /* Primary Red */
}

footer p {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-top: 20px;
}

/* Error Message */
.error-msg {
  color: #ff4d4d;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Login Container */
.login-container {
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Login Card */
.login-card {
 background-color: #fff;

  padding: 35px;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 0 15px rgba(255, 77, 77, 0.2); /* Soft red glow */
  border: 1px solid #ff4d4d33;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.logo {
  width: 120px;
  height: auto;
}

.input-group {
  margin-bottom: 18px;
}

.input-group label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #fff;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 8px;
  font-size: 16px;
  background-color: #111;
  color: #fff;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 40px;
}

.password-field button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  color: #ff4d4d;
  cursor: pointer;
}

.checkbox-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 20px;
  color: #ccc;
}

.forgot-password {
  color: #ff4d4d;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* Login Button */
.login-btn {
  width: 100%;
  padding: 12px;
  background-color: #ff4d4d;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.login-btn:hover {
  background-color: #cc0000; /* Deeper red on hover */
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 480px) {
  .login-container {
    padding: 10px;
  }

  .login-card {
    padding: 25px;
  }

  .logo {
    width: 100px;
  }

  h2 {
    font-size: 22px;
  }
}
