.btn-primary {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-radius: 10px;
}

.btn-smaller {
  width: 150px;
}
