::-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;
  object-fit: contain;
}
html,body{
   width: 100%; 
   height: 100vh;
   margin: 0;
   padding: 0;
   overflow-y: hidden;
   background-repeat: repeat;
}
.container{
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to  right, #000 50%, #fff 50%);
  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: 540px;
  width: 400px;
  max-width: 400px;
  background: #000;
  display: block;
  position: relative;
  top: 5rem;
  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: -0.1rem;
  object-fit: contain;
  transition: 1s;
}
.logo:hover{
  transform: scale(1.1);
  z-index: 1;
}
.sign-up{
  font-size: 20px;
  position: relative;
  top: -2rem;
  color: #fff;
  margin-bottom: 1.2rem;
  text-align: center;
}
form input{
  width: 82%;
  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;
}
.emil{
  position: relative;
  top: 0.2rem;
}
.pass{
  position: relative;
  top: 0.4rem;
}
.copass{
  position: relative;
  top: 0.6rem;
}
button{
  font-size: 1rem;
  margin-top: 1.8rem;
  padding: 10px 0;
  border-radius: 10px;
  outline: none;
  border: none;
  width: 16vw;
  background: #ee9470;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -2.0rem;
  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;
}
@media only screen and (max-width: 600px){
  .box{
    height: 540px;
    width: 400px;
    max-width: 300px;
    background: #fff;
    mix-blend-mode: difference;
    display: block;
    position: relative;
    top: 5rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 10px #444;
    border-radius: 20px;
    object-fit: contain;
    animation: box 1s forwards;
  }
  @keyframes box{
    0%{
      position: relative;
      top: 100%;
    }
  }
  .logo{
    width: 210px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: -1rem;
  }
  .sign-up{
    font-size: 20px;
    position: relative;
    top: -2rem;
    color: #07001f;
    margin-bottom: 1.2rem;
    text-align: center;
    text-shadow: 0 1px 1px #000 ;
  }
  form input{
    width: 200px;
    outline: none;
    border: 1px solid #fff;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 20px;
    background: #fff;
    color: #000;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: -2rem;
    box-shadow: 0 10px 10px #fff;
    mix-blend-mode: difference;
  }
  ::placeholder{
    color: #fff;
    mix-blend-mode: difference;
  }
  button{
    font-size: 1rem;
    margin-top: 1.8rem;
    padding: 10px 0;
    border-radius: 20px;
    outline: none;
    border: none;
    width: 16vw;
    background: #ee9470;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: -2.0rem;
    filter:drop-shadow(0 5px 5px #ee9470);
  }
  button:hover{
    background: rgba(17, 107, 143, 0.877);
  }
  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;
  }
}

