:root {
  --primary-text-color: #e44672;
}
.button {
  width: 10rem;
  height: 3rem;
  padding: 0.5em 0.5em;
  border: none;
  border-radius: 0.5rem;
  color: var(--primary-text-color);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
  text-align: center;
  outline: none;
  cursor: pointer;
  background: #f1f1f1;
  box-shadow: 3px 3px 12px #dddddd, inset -6px -6px 6px #ebebeb,
    inset 6px 6px 6px #ffffff;
  border-radius: 8px;
}

.button_inverse {
  width: 10rem;
  height: 3rem;
  padding: 0.5em 0.5em;
  border: none;
  border-radius: 0.5rem;
  color: white;
  background: #e44672;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.13),
    inset 4px 4px 4px rgba(255, 255, 255, 0.24),
    inset -4px -4px 4px rgba(0, 0, 0, 0.22);
  border-radius: 6px;
  cursor: pointer;
}
