/* Custom login page button */
.login-page-custom-button {
  position: relative;
  width: 100%;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.login-page-custom-button:hover {
  background: hsl(var(--primary) / 0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: hsl(var(--primary-foreground));
  text-decoration: none;
}

.login-page-custom-button:visited {
  color: hsl(var(--primary-foreground));
}

/* Help text styling */
.login-page-help-text {
  margin: 20px 0 4px 0;
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  font-weight: 400;
}
