/* Адаптация под темную тему сайта */
.bg-light {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-light) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.table {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.1);
}

.table thead {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.alert-info {
  background-color: rgba(var(--accent), 0.1);
  border-color: var(--accent);
  color: var(--text-light);
}

.badge {
  background: var(--gradient-1);
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: var(--gradient-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

/* Hero CTA */
.login-hero-cta {
  padding: 1.5rem 0 0.5rem;
}

.login-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(to bottom, #fb5085, #e83e72, #dc3166, #d1265b);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
  box-shadow: 0 4px 24px rgba(220, 49, 102, 0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.login-cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(to bottom, #ff6a96, #f04d80, #e83e72, #dc3166);
  box-shadow: 0 8px 32px rgba(220, 49, 102, 0.65), inset 0 1px 0 rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
}

.login-cta-arrow {
  font-size: 1.2em;
  transition: transform 0.2s ease;
  display: inline-block;
}

.login-cta-btn:hover .login-cta-arrow {
  transform: translateX(5px);
}

.login-cta-trust {
  font-size: 0.88rem;
  color: rgba(232, 235, 240, 0.55);
  letter-spacing: 0.03em;
}


