/* Custom Login Page Styles */
.auth.auth-img-bg {
  background: linear-gradient(135deg, #1f2136 0%, #17182a 50%, #1f2136 100%);
  position: relative;
  overflow: hidden;
}

.auth.auth-img-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(39, 54, 127, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(39, 54, 127, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.auth-form-transparent {
  background: rgba(31, 33, 54, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 2.5rem !important;
}

.brand-logo {
  margin-bottom: 2rem;
}

.brand-text-logo {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #e9e6e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-text-logo .accent {
  background: linear-gradient(135deg, #27367f 0%, #3d4fa0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-form-transparent h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.auth-form-transparent h6 {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.form-group label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #27367f;
  color: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(39, 54, 127, 0.25);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.input-group-text {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #27367f;
}

.btn-primary {
  background: linear-gradient(135deg, #27367f 0%, #3d4fa0 100%);
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(39, 54, 127, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3d4fa0 0%, #27367f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 54, 127, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Right side branding */
.col-lg-6:last-child {
  position: relative;
}

.col-lg-6:last-child::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(39, 54, 127, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}

.col-lg-6:last-child .brand-text-logo {
  position: relative;
  z-index: 1;
}

.col-lg-6:last-child .btn-primary {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 991px) {
  .auth-form-transparent {
    margin: 1rem;
    padding: 2rem !important;
  }
  
  .col-lg-6:last-child {
    padding: 2rem 1rem;
  }
}

