@import "@css/main.css";

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0.5rem 1rem;

  font-family: "SF Pro Text", "Noto Sans KR", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: normal;
  text-align: center;
  text-decoration: none;

  display: inline-block;
  width: auto;

  border: none;
  cursor: pointer;
  background: $color-astar-blue;
  border-radius: 30px;
  color: $color-secondary;
}

button:hover {
  background: $color-secondary;
  color: #fff;
}

button:focus {
  background: $color-primary;
  color: #fff;
}

button:disabled {
  background: #191D1F;
  color: #B1B7C1;
}