/*** Desktop Screen Styling ***/
#desktop-screen-container {
  display: none;
  position: relative;
  z-index: 10;
  height: 100dvh;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient(
    173.33deg,
    #e6f0ff 2.44%,
    #ffffff 41.04%,
    #f5e6d0 89.81%
  );
  gap: 24px;
  position: relative;
  z-index: 10;
}

#desktop-screen-bg-img {
  position: absolute;
  bottom: 0;
  width: 100%;
}

#desktop-screen-left {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  gap: 12px;
  margin: 100px 0px 100px 100px;
}

#desktop-screen-left-image {
  height: 60px;
}

#desktop-screen-left-title {
  font-size: 45px;
}

#desktop-screen-left-description {
  font-size: 28px;
}

#desktop-screen-right {
  position: relative;
  margin: 100px 100px 100px 0px;
}

#desktop-screen-right-image {
  /* height: 100%; */
}

#desktop-screen-right-qr {
  position: absolute;
  width: 200px;
  height: 200px;
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#desktop-screen-right-title {
  position: absolute;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20%;
  font-size: 45px;
  color: var(--main-color);
}

/* Desktop styles (screens wider than 992px) */
@media (min-width: 993px) {
  #desktop-screen-container {
    display: flex;
    position: relative;
    z-index: 10;
    height: 100dvh;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(
      173.33deg,
      #e6f0ff 2.44%,
      #ffffff 41.04%,
      #f5e6d0 89.81%
    );
    gap: 24px;
  }
}
