.nexora-signin {
  width: 100%;
  padding: 14px 18px;

  display: flex;
  align-items: center;
  gap: 14px;

  background: #0b1220;

  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;

  color: #f8fafc;

  cursor: pointer;
  transition: all 0.25s ease;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.02);
}

.nexora-signin:hover {
  transform: translateY(-2px);

  border-color: rgba(59,130,246,0.35);

  background:
    linear-gradient(
      180deg,
      rgba(59,130,246,0.08),
      rgba(255,255,255,0.01)
    ),
    #0b1220;

  box-shadow:
    0 10px 30px rgba(59,130,246,0.12);
}

.nexora-signin:active {
  transform: scale(0.98);
}

.nexora-signin img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.signin-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.signin-text .top {
  font-size: 0.75rem;
  color: #64748b;
}

.signin-text .bottom {
  font-size: 1rem;
  font-weight: 600;
  color: #f8fafc;
}
