* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  background-color: #009fdb;
}

.login {
  width: 300px;
  height: 520px;
  display: table;
  background: #fff;
  padding: 25px 40px 40px 40px;
  margin: 70px auto;
  border-radius: 8px;
  /*box-shadow: rgba(200,200,200,0.7) 0 4px 10px;*/
}


.banner {
  width: 300px;
  height: 520px;
  display: table;
  background: #fff;
  padding: 25px 40px 40px 40px;
  margin: 70px auto;
  border-radius: 8px;
  /*box-shadow: rgba(200,200,200,0.7) 0 4px 10px;*/
}


.login img {
  margin: 20px auto 25px auto;
  display: block;
}

label {
  font-weight: 300;
}

p {
  display: none;
  color: red;
  font-size: 14px;
  margin-top: 15px;
  font-weight: 700;
  text-align: center;
}


.shake {
  animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}