html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.auth-shell,
.main {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(180deg, #f5f7ff 0%, #e8efff 56%, #f3f6ff 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-shell .container,
.auth-shell .row,
.auth-shell .card {
  background: transparent !important;
}

.auth-shell::before,
.auth-shell::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.auth-shell::before {
  width: 280px;
  height: 280px;
  top: -130px;
  right: -120px;
  background: rgba(98, 60, 179, 0.16);
}

.auth-shell::after {
  width: 240px;
  height: 240px;
  bottom: -120px;
  left: -100px;
  background: rgba(5, 174, 185, 0.16);
}

.auth-shell-card {
  border: none;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(245,247,255,0.98) 100%);
  backdrop-filter: blur(16px);
  box-shadow: 0 32px 70px rgba(49, 62, 123, 0.14);
}

.login-verify-card-body {
  padding: 2.5rem;
}

.auth-login-header {
  color: #1f254d;
}

.auth-login-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #4a34ab 0%, #05aeb9 100%);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-login-copy {
  margin: 0 auto;
  max-width: 22rem;
}

.auth-login-copy p,
.auth-login-footer small {
  color: #6f7287;
}

.auth-login-submit {
  border-radius: 999px;
  padding: 0.95rem 1.1rem;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(74, 52, 171, 0.22);
  background: linear-gradient(135deg, #4a34ab 0%, #05aeb9 100%);
  border: none;
}

.auth-login-submit:hover {
  transform: translateY(-1px);
}

.auth-login-footer {
  color: #8e92a9;
}

.auth-login-input {
  border-radius: 14px;
  height: 54px;
  padding: 0.9rem 1rem;
  background: #f7f8ff;
  border: 1px solid #e8eaf7;
}

.auth-login-input:focus {
  border-color: #623cb2;
  box-shadow: 0 0 0 0.18rem rgba(98, 60, 179, 0.14);
  background: #fff;
}

.auth-login-options {
  font-size: 0.95rem;
}

@media (max-width: 575px) {
  .auth-shell::before,
  .auth-shell::after {
    display: none;
  }
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #f5f7ff 0%, #e8efff 56%, #f3f6ff 100%);
}