
/*  Sign in (Register /Login)  */

.bg {
  position: relative;
    background-color: hsl(0deg 0% 100% / 25%);
    transition: all .8s;
    background-image: url(/static/img/tuamc/bg.png);
    overflow: visible;
    background-position: top;
    background-repeat: repeat-x;
}

@media (max-width: 769px) {
  .bg {
    background-position-y: -100px;
  }
}

#error-span {
  display: none;
}

.error #error-span {
  display: block;
}

form input.error {
  border-color: #feb2b2;
}

form label.error {
  color: #e53e3e;
  font-size: 0.75em;
  margin-top: 0.5em;
}

form #error-span {
  color: #e53e3e;
}


#promo-code input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: gray;
  font-weight: 500;
  font-family: sans-serif;
}

.promo-code-input-container {
  display: inline-flex;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-width: 290px;
}

.coupon {
  width: min-content;
}

.overflow-container{
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}
.overflow-container::-webkit-scrollbar { 
  display: none;  /* Safari and Chrome */
}

@media (max-height: 768px) {
  form .platforms .platformItem {
    min-height: 45px;
    max-width: 70px;
  }
}