.login-container {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%,-50%);
    width: 25%;
}

body{
    width:100%;
    height:100vh;
    margin:0;
    padding:0;
    background-image: url(../../BGbody.jpg);
    background-size:cover;
    background-repeat: no-repeat;
    
}

/* body:before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-image: url(../../BGbody.jpg);
  background-size:cover;
  background-repeat: no-repeat;
  opacity:.5;
  mix-blend-mode:hard-light;
  animation:animate .2s linear infinite;
} */

/* @keyframes animate{
	0%{
	background-position: 0 0;
	filter:hue-rotate(0deg);
	}
	10%{
	background-position: 5px 0;
	}
	20%{
	background-position: -5px 0;
	}
	30%{
	background-position: 15px 0;
	}
	40%{
	background-position: 5px 0;
	}
	50%{
	background-position: -25px 0;
	}
	60%{
	background-position: -50px 0;
	}
	70%{
	background-position: 0 -20px;
	}
	80%{
	background-position: -60px -20px;
	}
	81%{
	background-position: 0 0;
	}
	100%{
	background-position: 0 0;
	filter:hue-rotate(360deg);
	}
} */

/* section {
  animation: glitch 1s linear infinite;
} */

/* @keyframes glitch{
  2%,64%{
    transform: translate(2px,0) skew(0deg);
  }

  4%,60%{
    transform: translate(-2px,0) skew(0deg);
  }

  62%{
    transform: translate(0,0) skew(5deg); 
  }
} */

/* section:before,
section:after{
  content: attr(title);
  position: absolute;
  left: 0;
}

section:before{
  animation: glitchTop 1s linear infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
} */

/* @keyframes glitchTop{
  2%,64%{
    transform: translate(2px,-2px);
  }
  4%,60%{
    transform: translate(-2px,2px);
  }
  62%{
    transform: translate(13px,-1px) skew(-13deg); 
  }
}

section:after{
  animation: glitchBotom 1.5s linear infinite;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
} */

/* @keyframes glitchBotom{
  2%,64%{
    transform: translate(-2px,0);
  }
  4%,60%{
    transform: translate(-2px,0);
  }
  62%{
    transform: translate(-22px,5px) skew(21deg); 
  }
} */

  /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .login-container {
    width: 70%;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .login-container {
    width: 50%;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .login-container {
    width: 40%;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .login-container {
    width: 25%;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .login-container {
    width: 25%;
  }
}