.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.auth-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("assets/img/banner/hero_bg.svg") center/cover;
  opacity: 0.1;
  z-index: 1;
}

.auth-card {
  background: rgba(25, 26, 27, 0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 204, 102, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.auth-header p {
  color: #888888;
  font-size: 16px;
  margin: 0;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-control-custom {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 204, 102, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  outline: none;
  border-color: #ffcc66;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 204, 102, 0.1);
}

.form-control-custom::placeholder {
  color: #888888;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888888;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: #ffcc66;
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
}

.remember-me {
  display: flex;
  align-items: center;
  color: #888888;
}

.remember-me input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #ffcc66;
}

.forgot-password {
  color: #ffcc66;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #ffbe17;
  text-decoration: underline;
}

.btn-login {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #ffcc66 0%, #ffbe17 100%);
  border: none;
  border-radius: 10px;
  color: #151515;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 204, 102, 0.3);
}

.btn-login:active {
  transform: translateY(0);
}

.auth-footer {
  text-align: center;
  color: #888888;
  font-size: 14px;
}

.auth-footer a {
  color: #ffcc66;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.auth-footer a:hover {
  color: #ffbe17;
  text-decoration: underline;
}

.recaptcha-container {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .auth-card {
    padding: 30px 20px;
  }

  .auth-header h2 {
    font-size: 24px;
  }

  .auth-options {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
