* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --grey-black: #1D2023;
  --light-blue: #69ABE4;
  --grey: rgba(228, 233, 239, 1);
}

.btn-dark {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(251, 253, 255);
  padding: 10px 40px;
  border-radius: 24px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: white;
  gap: 4px;
}
.btn-dark:hover {
  background-color: rgba(228, 233, 239, 0.4);
}

.btn-light {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 12px 44px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  gap: 4px;
  color: black;
  background-color: white;
}

.btn-primary {
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  border-radius: 24px;
  padding: 10px 40px;
  color: #FFFFFF;
  background-color: var(--light-blue);
  border: 1px solid var(--light-blue);
  cursor: pointer;
  display: block;
}
.btn-primary:hover {
  background-color: rgb(75, 152, 234);
}

/*# sourceMappingURL=global.css.map */
