.page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  height: 100%;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to right, var(--primary-500), var(--primary-400));
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 590px;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.logos-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.logos-wrapper img {
  width: auto;
}

p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  margin-top: 24px;
}

.bg-logo {
  position: absolute;
  left: 0px;
  z-index: 1;
  height: 100%;
  min-height: 100vh;
  width: 55%;
  overflow: hidden;
  background-image: url("../public/kireva-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.bg-overlay {
  position: absolute;
  z-index: 1;
  height: 100%;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  mix-blend-mode: darken;
}

.dots {
  z-index: -1;
  width: fit-content !important;
  opacity: 0.8;
}

.countries {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}