/**
 * Component Styles
 * Reusable components and utility classes
 */

/* === BUTTONS === */
.btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  background-color: var(--color-primary-alt);
  color: var(--color-white);
  line-height: 1;
  border: none;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-3) var(--spacing-6);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  box-sizing: border-box;
  text-decoration: none;;
}