.auth-login-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: #1e293b;
  background: #fff;
}

.auth-login-shell {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
}

@media (min-width: 992px) {
  .auth-login-shell {
    grid-template-columns: 1fr 1fr;
  }
}

.auth-login-form-pane {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
}

.auth-login-form-inner {
  width: 100%;
  max-width: 420px;
}

.auth-login-brand {
  margin-bottom: 1.5rem;
}

.auth-login-info-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.auth-login-info-pane .mc-logo,
.auth-login-info-pane .mc-logo:hover,
.auth-login-info-pane .mc-logo:focus,
.auth-login-info-pane .mc-logo-wordmark,
.mc-logo-on-dark,
.mc-logo-on-dark .mc-logo-wordmark {
  color: #fff;
}

.auth-login-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.auth-login-subtitle {
  color: #64748b;
  font-size: 1rem;
  margin: 0 0 2rem;
  line-height: 1.5;
}

.auth-login-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.45rem;
}

.auth-login-field {
  position: relative;
  margin-bottom: 1.15rem;
}

.auth-login-input-wrap {
  position: relative;
}

.auth-login-field-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #64748b;
  pointer-events: none;
  z-index: 1;
}

.auth-login-input {
  width: 100%;
  border: 1px solid transparent;
  background: #f1f5f9;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  font-size: 0.95rem;
  color: #0f172a;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.auth-login-input-has-toggle {
  padding-right: 2.85rem;
}

.auth-login-password-toggle {
  position: absolute;
  right: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #64748b;
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 0;
}

.auth-login-password-toggle:hover,
.auth-login-password-toggle:focus-visible {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.06);
  outline: none;
}

.auth-login-password-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.auth-login-password-toggle .d-none {
  display: none !important;
}

.auth-login-input::placeholder {
  color: #94a3b8;
}

.auth-login-input:focus {
  outline: none;
  background: #fff;
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.auth-login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.25rem 0 1.5rem;
}

.auth-login-remember {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
  cursor: pointer;
  user-select: none;
}

.auth-login-remember input {
  width: 1rem;
  height: 1rem;
  accent-color: #2563eb;
}

.auth-login-forgot {
  color: #2563eb;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.auth-login-forgot:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.auth-login-submit {
  width: 100%;
  border: 0;
  border-radius: 0.75rem;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.25rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.auth-login-submit:hover {
  background: #1d4ed8;
  color: #fff;
}

.auth-login-submit:active {
  transform: translateY(1px);
}

.auth-login-divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.5rem 0 1.15rem;
  color: #94a3b8;
  font-size: 0.88rem;
}

.auth-login-divider::before,
.auth-login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.auth-login-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.auth-login-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem 0.85rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #0f172a;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.auth-login-social-form {
  display: flex;
  min-width: 0;
}

.auth-login-social-form .auth-login-social-btn {
  width: 100%;
}

.auth-login-social-btn:hover:not(:disabled) {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.auth-login-social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.auth-login-footer {
  margin-top: 1.75rem;
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
}

.auth-login-footer a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.auth-login-footer a:hover {
  text-decoration: underline;
}

.auth-login-alert {
  border: 0;
  border-radius: 0.75rem;
  background: #fef2f2;
  color: #b91c1c;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}

.auth-login-info-pane {
  display: none;
  background: linear-gradient(160deg, #2563eb 0%, #1d4ed8 55%, #1e40af 100%);
  color: #fff;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .auth-login-info-pane {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.auth-login-info-pane::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -120px;
  right: -80px;
}

.auth-login-info-pane::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -90px;
  left: -60px;
}

.auth-login-info-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  text-align: center;
}

.auth-login-info-title {
  font-size: clamp(1.85rem, 2.6vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.auth-login-info-subtitle {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
}

.auth-login-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  text-align: left;
  display: grid;
  gap: 1rem;
}

.auth-login-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.auth-login-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.auth-login-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.auth-login-home:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  color: #fff;
}

.auth-login-mobile-home {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
}

@media (min-width: 992px) {
  .auth-login-mobile-home {
    display: none;
  }
}

.auth-login-field .text-danger {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
}
