::-webkit-scrollbar{
  width: 1vw;
}
::-webkit-scrollbar-thumb{
  background: rgba(444, 444, 444, 0.3);
  border-radius: 20%;
}
::-webkit-scrollbar-track{
   background: rgba(000, 000, 000, 1);
   border-radius: 10px;
}
element::-webkit-scrollbar{
  width: 0px;
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: bolder;
  object-fit: scale-down;
  font-family: 'Roboto', sans-serif;
  position: relative;
}
:root{
  --primary-color: linear-gradient(to  right, #000 50%, #fff 50%);
  --secondary-color: #000;
}
.dark-theme{
  --primary-color: #000;
  --secondary-color: #fff;
}
.light-theme{
  --primary-color: #fff;
  --secondary-color: #000;
}
#icon{
  cursor: pointer; 
}
html,body{
   width: 100%; 
   height: 100vh;
   margin: 0;
   padding: 0;
   overflow-y: hidden;
   background-repeat: repeat;
}
.container{
  width: 100%;
  height: 100%;
  background-image: var(--primary-color);
  background-size: 100% 100%;
  animation: bgAnimatedGradient 80s infinite;
}
@keyframes bgAnimatedGradient{
  0%{
      background-position:0 100%;
  }
  25%{
      background-position: 200% 0;   
  }
  50%{
      background-position: 0 100%;
  }
  75%{
      background-position: 200% 0;
  }
  100%{
      background-position: 0 100%;
  }
}
.box{
  height: 520px;
  width: 400px;
  max-width: 400px;
  background: #000;
  display: block;
  position: relative;
  top: 1rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  object-fit: contain;
  filter:drop-shadow(0 0 10px #444);
  animation: box 1s forwards;
}
@keyframes box{
  0%{
    position: relative;
    top: 100%;
  }
}
.logo{
  width: 230px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -1rem;
  left: -3px;
  transition: 1s;
}
.logo:hover{
  transform: scale(1.1);
  z-index: 1;
}
.login{
  font-size: 20px;
  position: relative;
  top: -2rem;
  left: -0.1rem;
  color: #fff;
  margin-bottom: 1.2rem;
  text-align: center;
  text-shadow: 0 1px 1px #fff;
}
form input{
  width: 81%;
  outline: none;
  border: 1px solid #fff;
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -2rem;
  mix-blend-mode: difference;
  transition: 1s;
}
form input:hover{
  transform: scale(1.1);
  z-index: 1;
}
::placeholder{
  color: #fff;
  mix-blend-mode: difference;
}
.pass{
  position: relative;
  top: 0.1rem
}
button{
  font-size: 1rem;
  margin-top: 1.8rem;
  padding: 10px 0;
  border-radius: 10px;
  outline: none;
  border: none;
  width: 100px;
  max-width: 100px;
  background: #ee9470;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -2.0rem;
  left: -0.1rem;
  transition: 1s;
}
button:hover{
  transform: scale(1.3);
  z-index: 2;
}
input:focus{
  border: 1px solid rgb(192,192,192);
}
.terms{
  margin-top: 0.2rem;
}
.terms input{
  height: 1em;
  width: 1em;
  vertical-align: middle;
  cursor: pointer;
}
.terms label{
  font-size:0.7rem ;
}
.terms a{
color:rgb(17,107,143) ;
text-decoration: none;
}
.member{
  font-size: 0.8rem;
  margin-top: 1.4rem;
  color: #636363;
  text-align: center;
  position: relative;
  top: -2.5rem;
}
.member a{
  color: #ee9470;
  text-decoration: none;
  transition: 1s;
}
.Or{
  position: relative;
  top: -1.5rem;
  left: -0.1rem;
  text-align: center;
}
.loginOptions ul a i{
  position: relative;
  left: 4.2rem;
  mix-blend-mode: difference;
}
.loginOptions ul a i:hover{
  color: #444;
}
hr{
  position: relative;
  top: 1rem;
}
.fa-comment-sms{
  color: #fff;
  cursor: pointer;
  position: relative;
  top: -1rem;
  left: 5.8rem;
  transition: 1s;
}
.fa-comment-sms:hover{
  transform: scale(1.3);
  z-index: 2;
}
.fa-qrcode{
  color: #fff;
  cursor: pointer;
  position: relative;
  top: -1rem;
  left: 8rem;
  transition: 1s;
}
.fa-qrcode:hover{
  transform: scale(1.3);
  z-index: 2;
}
.fa-google{
  color: #fff;
  cursor: pointer;
  position: relative;
  top: -1rem;
  left: 10.2rem;
  transition: 1s;
}
.fa-google:hover{
  transform: scale(1.3);
  z-index: 2;
}
.fa-apple{
  color: #fff;
  cursor: pointer;
  position: relative;
  top: -1rem;
  left: 13rem;
  transition: 1s;
}
.fa-apple:hover{
  transform: scale(1.3);
  z-index: 2;
}
@media only screen and (max-width: 400px){
}