:root {
  --primary: #00cc66;
  --secondary: #1a1a1a;
  --accent: #ffcc00;
  --light: #f8f9fa;
  --dark: #121212;
  --glow: 0 0 15px rgba(0, 204, 102, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



h1,
h2,
h3,
h4,
h5 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 12px 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--glow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: #00b359;
  border-color: #00b359;
  box-shadow: 0 0 25px rgba(0, 204, 102, 0.9);
  transform: translateY(-3px);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  padding: 12px 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.auth-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.auth-box {
  background: var(--secondary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), var(--glow);
  display: flex;
  min-height: 700px;
}

.auth-left {
  flex: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("{% static 'images/login-bg.jpg' %}") 
      no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  position: relative;
}

.auth-left:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(0, 204, 102, 0.1) 100%
  );
  pointer-events: none;
}

.auth-left-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.auth-left h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 204, 102, 0.8);
  line-height: 1.1;
}

.auth-left p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.features-list {
  list-style: none;
  margin-top: 30px;
}

.features-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.features-list li i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow);
}

.auth-right {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-container {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.logo {
  text-align: center;
  margin-bottom: 40px;
}

.logo h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-shadow: var(--glow);
  letter-spacing: 3px;
}

.logo span {
  color: var(--accent);
}

.form-title {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.form-title h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.form-title p {
  color: #aaa;
}

.form-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  box-shadow: var(--glow);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--accent);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  background: var(--dark);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: var(--glow);
  outline: none;
  background: #0a0a0a;
}

.input-icon {
  position: absolute;
  right: 20px;
  top: 45px;
  color: var(--primary);
  font-size: 1.2rem;
}

.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.checkbox-container {
  display: flex;
  align-items: center;
}

.checkbox-container input {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.forgot-password {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.forgot-password:hover {
  text-decoration: underline;
}

.social-login {
  text-align: center;
  margin: 30px 0;
}

.social-login p {
  position: relative;
  margin-bottom: 20px;
  color: #aaa;
}

.social-login p:before,
.social-login p:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.social-login p:before {
  left: 0;
}

.social-login p:after {
  right: 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow);
}

.facebook {
  background: #3b5998;
}

.google {
  background: #dd4b39;
}

.twitter {
  background: #1da1f2;
}

.switch-form {
  text-align: center;
  margin-top: 30px;
  color: #aaa;
}

.switch-form a {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
  margin-left: 5px;
  transition: all 0.3s ease;
}

.switch-form a:hover {
  text-decoration: underline;
}

/* Fighter Animation */
.fighter-animation {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--glow);
  animation: float 6s ease-in-out infinite;
}

.fighter-animation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .auth-box {
    flex-direction: column;
  }

  .auth-left {
    padding: 40px 20px;
  }

  .auth-right {
    padding: 40px;
  }

  .auth-left h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .auth-left h1 {
    font-size: 2.3rem;
  }

  .auth-right {
    padding: 30px 20px;
  }

  .logo h2 {
    font-size: 2rem;
  }

  .form-title h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .remember-forgot {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .features-list li {
    font-size: 0.95rem;
  }
}
