@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap");

* {
  box-sizing: border-box;
  font-family: "Rethink Sans", "Noto Sans", "Exo 2", sans-serif;
}

body {
  margin: 0;
  color: #0f172a;
  background:
    radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px) 0 0/22px 22px,
    radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px) 11px 11px/22px
      22px,
    #fbfcfe;
}

html::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.navbar__auth {
  border-radius: 5px !important;
  height: 45px;
  width: 45px;
}

.navbar__auth > i {
  margin: 0 auto;
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 18px 40px;
}

.muted {
  color: #667085;
}

a {
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  transition:
    transform 0.16s ease,
    filter 0.16s ease,
    border-color 0.16s ease;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

.btn--primary {
  background: #2ea6ff;
  color: white;
  border-color: rgba(46, 166, 255, 0.55);
}

.btn--primary:hover {
  filter: brightness(1.03);
}

.btn--soft {
  background: white;
  color: #0f172a;
}

.link {
  color: #1b86d6;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.divider {
  position: relative;
  text-align: center;
  margin: 14px 0 10px;
  color: #95a0b3;
  font-size: 12px;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: rgba(15, 23, 42, 0.12);
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.divider span {
  background: rgba(255, 255, 255, 0.85);
  padding: 0 12px;
  border-radius: 999px;
}
