*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "hind",sans-serif;
  text-decoration: none;
}
body{
  background: #121212;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-form{
  width: 470px;
  background: #202020;
  padding: 30px 60px;
}
.logo{
  height: 50px;
  text-align: center;
}
.logo img{
  height: 50px;
}
.social-media{
  display: flex;
  margin: 30px 0;
}
.social-media button{
  height: 50px;
  width: 100px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: .3s linear;
  border-radius: 2px;
}
.social-media button:last-child{
  margin: 0;
}
.social-media button img{
  width: 20px;
}
.facebook{
  background: #4267b2;
}
.google{
  background: #fff;
}
.playstation{
  background: #02b3e8;
}
.xbox{
  background: #107c10;
}
.switch{
  background: #e60012;
}
.social-media button:hover {
  opacity: .7;
}
.login-form h6{
  color: #f1f1f1;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}
.textbox{
  width: 100%;
  height: 50px;
  position: relative;
  margin-top: 15px;
}
.textbox input{
  width: 100%;
  height: 50px;
  border: none;
  background: #2b2b2b;
  padding: 0 15px;
  font-size: 16px;
  outline: none;
  color: #f4f4f4;
}
.textbox input:focus{
  background: #484848 !important;
}
.check-message{
  position: absolute;
  top: 50%;
  right: 10px;
  color: #fff;
  text-transform: uppercase;
  transform: translateY(-50%);
}
.textbox input:focus + .check-message{
  display: none;
}
.options{
  margin-top: 15px;
  color: #f4f4f480;
  overflow: hidden;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.remember-me{
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  cursor: pointer;
}
.checkbox{
  width: 20px;
  height: 20px;
  background: #484848;
  margin-right: 8px;
  position: relative;
}
.checkbox input{
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.checked{
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  display: none;
}
.checkbox input:checked + .checked{
  display: block;
}
.options a{
  color: #f4f4f480;
  font-size: 14px;
  float: right;
}
.login-btn{
  width: 100%;
  height: 50px;
  margin-top: 30px;
  background: #191919;
  color: #f1f1f1;
  border: none;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  transition: .3s linear;
}
.login-btn.active{
  background: #037bee;
  color: #fff;
}
.login-btn.active:hover{
  opacity: .7;
}
.hidden{
  display: none;
}
.privacy-link{
  text-align: center;
  margin-top: 35px;
}
.privacy-link a{
  color: #f1f1f1;
  font-size: 14px;
}
.dont-have-account{
  font-size: 14px;
  text-align: center;
  color: #f4f4f480;
  margin: 20px 0;
}
.dont-have-account a{
  color: #f1f1f1;
}
@media screen and (max-width:470px) {
  body{
    background: #202020;
  }
  .login-form{
    width: 100%;
    padding: 0 25px;
  }
}
