/* Extracted from auth/login.blade.php (block 1) */
.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .15rem;
}

.remember-login {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
  color: var(--bs-body-color, #334155);
  font-size: .9rem;
  cursor: pointer;
  user-select: none;
}

.remember-login .form-check-input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  border-color: #94a3b8;
  cursor: pointer;
}

.remember-login .form-check-input:checked {
  background-color: var(--primary, #2563eb);
  border-color: var(--primary, #2563eb);
}

.forgot-password-link {
  color: var(--primary, #2563eb);
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .login-options {
    align-items: flex-start;
    flex-direction: column;
    gap: .65rem;
  }
}

#login-2fa-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.twofa-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.twofa-box {
  position: relative;
  max-width: 360px;
  width: 100%;
  background: #fff;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 12px;
  padding: 20px;
  z-index: 2;
}
.swal2-container {
  z-index: 10000 !important;
}
