

.main-content {
  margin: 0;
  padding: 0;
}

input[type="submit"] {
  background-color: #0097ff;
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
}

input[type="submit"]:hover {
  background-color: #2a4057;
  cursor: pointer;
}

.layout {
  height: 100dvh;
}

body {
  margin: 0;
  padding: 0;
  height: 100dvh;
}

.logoRow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.logoImage {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

.logoText {
  font-size: 1rem;
  font-weight: 300;
  color: #eeeeee;
  padding: 5px 10px;
  border-radius: 10px;
}

.logoText.riders {
  background: linear-gradient(to bottom right, #0097ff, #2b3f57);
}

.logoText.enterprise {
  background: linear-gradient(to bottom right, #0097ff, #35cb33);
}

.logoText.workshop {
  background: linear-gradient(to bottom right, #0097ff, #f04282);
}

.logoText.admin {
  background: linear-gradient(to bottom right, #2b3f57, #000000);
}

.logoText.localDev {
  background: linear-gradient(to bottom right, #C81D25, #000000);
}

.popupAlert {
  animation: popupAlertIn 0.2s linear;
}

.carousel-container {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  width: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: center;
  flex-shrink: 0;
  box-sizing: border-box;
  overflow-wrap: normal;
  text-align: center;
  border-radius: 5px;
  font-size: 0.9rem;
}

.price-point {
  font-size: 4rem;
  font-weight: 200;
  background: linear-gradient(90deg, #0097ff, #f04282);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body {
  background-image: url('https://storage.googleapis.com/zenion.com/assets/platform/app-background-horizontal.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #222831;
}

@media (max-width: 1000px) {
  body {
    background-image: url('https://storage.googleapis.com/zenion.com/assets/platform/app-background-vertical.png');
  }
}