.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8faff;
  padding: 40px 24px;
}

.auth-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.auth-box {
  padding: 48px 40px;
  width: 100%;
  max-width: 480px;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08), 0 0 20px rgba(13, 110, 253, 0.04) !important;
}

.plan-selector .btn {
  background-color: #ffffff;
  border-color: #e9ecef;
  transition: all 0.2s ease;
}

.plan-selector .btn:hover {
  background-color: #f8f9fa;
  border-color: #dee2e6;
  color: #212529;
}

.plan-selector .plan-price {
  font-size: 12px;
  font-weight: 500;
  color: #6c757d;
  transition: color 0.15s ease-in-out;
}

.btn-check:checked+.btn {
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
  color: #ffffff !important;
}

.btn-check:checked+.btn .text-dark,
.btn-check:checked+.btn .fw-bold {
  color: #ffffff !important;
}

.btn-check:checked+.btn .plan-price,
.btn-check:checked+.btn .text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

.btn-check:checked+.btn .fw-bold.mb-1 {
  color: #fff !important;
}

.form-control {
  border: 1px solid #dee2e6;
  background-color: #f8f9fa;
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: #0d6efd;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

.svg-primary {
  filter: brightness(0) saturate(100%) invert(32%) sepia(98%) saturate(3015%) hue-rotate(209deg) brightness(100%) contrast(105%);
}

a {
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}