* {
  margin: 0;
  padding: 0;
  box-shadow: border-box;
  font-family: Arial, sans-serif;
}
body {

  overflow: auto;
}
img {
  width: 32px;
}
section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-size: cover;
  animation: gradient 10s ease infinite;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.box {
  position: relative;
}
.box .square {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  animation: square 10s linear infinite;
  animation-delay: calc(-1s * var(--i));
}
@keyframes square {
  0%, 100% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(20px);
  }
}
.box .square:nth-child(1) {
  width: 100px;
  height: 100px;
  top: -15px;
  right: -105px;
  z-index: 2;
}
.box .square:nth-child(2) {
  width: 100px;
  height: 100px;background:rgba(255, 0, 0, 0.1);
  top: 105px;
  left: -105px;
  z-index: 2;
}
.box .square:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 85px;
  right: -45px;
  z-index: 2;
}
.box .square:nth-child(4) {
  width: 50px;
  height: 50px;
  bottom: 35px;
  left: -95px;
   z-index: 2;
}
.box .square:nth-child(5) {
  width: 50px;
  height: 50px;
  top: -15px;
  left: -25px;
   z-index: 2;
}
.box .square:nth-child(6) {
  width: 85px;
  height: 85px;
  top: 165px;
  right: -155px;
  z-index: 2;
}
.box .square:nth-child(7) {
  width: 105px;
  height: 105px;
  top: 195px;
  right: -145px;
  z-index: 2;
}
.popss{border:0 solid #ccc;position:fixed;z-index:99999999;top:44%;left:10%;right:10%;text-align:center;color:#fff;padding:30px 0;font-size:1.2em;border-radius:0;opacity:0.95;box-shadow: 0 25px 45px #ccc;}
.popss p {padding:10px 0}
.popss {animation:animatezoom 0.3s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}
.container {
  position: relative;
  padding: 10px;
  width: 260px;
  min-height: 380px;
  display: flex;
  text-align:center;
  justify-content: center;
  align-items: center;
  opacity:0.95;
  border-radius: 10px;border:3px solid #999; 
}
.form {
  position: relative;
  width: 100%;
  height: 100%;
}
.form h2 {
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.form h4 {
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.form h5 {
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.form .inputBx {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.form .inputBx input {
  width: 80%;
  outline: none;
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
  padding-left: 40px;
  border-radius: 15px;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.form .inputBx .password-control {
  position: absolute;
  top: 11px;
  right: 10px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(view.svg) 0 0 no-repeat;
  transition: 0.5s;
}
.form .inputBx .view {
  background: url(no-view.svg) 0 0 no-repeat;
  transition: 0.5s;
}
.form .inputBx img {
  position: absolute;
  top: 6px;
  left: 8px;
  transform: scale(0.6);
  filter: invert(1);
}
.form .inputBx button {
  background: #fff;
  color: #111;
  width: 100px;
  padding: 8px 10px;
  box-shadow: none;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 1.5s;
  border-radius: 15px;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.form .inputBx button:hover {
	background: orange;color:#fff;
}	
.form .inputBx input[type=submit]:hover {
  background: linear-gradient(115deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.25));
  color: #fff;
  transition: 0.5s;
}
.form .inputBx input::placeholder {
  color: #fff;
}
.form .inputBx span {
  position: absolute;
  left: 30px;
  padding: 10px;
  display: inline-block;
  color: #fff;
  transition: 0.5s;
  pointer-events: none;
}
.form .inputBx input:focus ~ span,
.form .inputBx input:valid ~ span {
  transform: translateX(-30px) translateY(-25px);
  font-size: 12px;
}
.form p {
  color: #fff;
  font-size: 15px;
  margin-top: 5px;
}
.form p a {
  color: #fff;
}
.form p a:hover {
  background-color: #000;
  background-image: linear-gradient(to right, #434343 0%, black 100%);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
}
.remember {
  position: relative;
  display: inline-block;
  color: #fff;
  margin-bottom: 10px;
  cursor: pointer;
}
@media only screen and (max-width: 677px) {
section {background-size: 200% 400%;}	
.popss{border:1px solid #ccc;position:fixed;z-index:99999999;top:45%;left:10px;right:10px;text-align:center;color:#fff;padding:40px 0;font-size:1.2em;border-radius:0;opacity:0.95;}
.box .square {display:none;}
}	