/* ==========================================================================
   Component: Button
   ========================================================================== */

.c-button {
  padding: 0px 20px;
  height: 42px;
  text-decoration: none;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  white-space: nowrap;
  font-weight: 700;
}

.c-button:hover {
  opacity: 0.7;
}

.c-button--primary {
  background-color: var(--primary-color);
  color: white;
}

.c-button--secondary {
  background-color: #fff;
  color: var(--pink);
}

.c-button--large {
  padding: 0px 50px;
  height: 75px;
  border-radius: 50px;
  font-size: var(--font-2xl);
}

.c-button--slfb-blue {
  background-color: #5174aa;
  color: white;
}
