/* Global Box Sizing and Font Imports */
*, *:after, *:before {
  box-sizing: border-box;
}

/* Body Styles */
body {
  background: #FF4081/ 1.25;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

/* Panda Container */
.panda {
  position: relative;
  width: 200px;
  margin: 50px auto;
}

/* Panda's Face Styles */
.face {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 100%;
  margin: 50px auto;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .15);
  z-index: 50;
  position: relative;
}

/* Panda's Ears Styles */
.ear {
  position: absolute;
  width: 80px;
  height: 80px;
  background: #000;
  z-index: 5;
  border: 15px solid #fff;
  left: -15px;
  top: -15px;
  border-radius: 100%;
}

/* Panda's Right Ear (Similar to Left Ear) */
.ear:after {
  content: '';
  width: 80px;
  height: 80px;
  background: #000;
  z-index: 5;
  border: 15px solid #fff;
  left: 125px;
  top: -15px;
  border-radius: 100%;
  position: absolute;
}

/* Panda's Eye Shades Styles */
.eye-shade {
  background: #000;
  width: 50px;
  height: 80px;
  margin: 10px;
  position: absolute;
  top: 35px;
  left: 25px;
  transform: rotate(220deg);
  border-radius: 25px / 20px 30px 35px 40px;
}

/* Panda's Right Eye Shade (Similar to Left Eye Shade) */
.eye-shade.rgt {
  transform: rotate(140deg);
  left: 105px;
}

/* Panda's Eye Whites Styles */
.eye-white {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #fff;
  z-index: 500;
  left: 40px;
  top: 80px;
  overflow: hidden;
}

/* Panda's Right Eye White (Similar to Left Eye White) */
.eye-white.rgt {
  right: 40px;
  left: auto;
}

/* Panda's Eye Balls Styles */
.eye-ball {
  position: absolute;
  width: 0px;
  height: 0px;
  left: 20px;
  top: 20px;
  max-width: 10px;
  max-height: 10px;
  transition: .1s;
}

/* Panda's Eye Ball Core (Black Part) */
.eye-ball:after {
  content: '';
  background: #000;
  position: absolute;
  border-radius: 100%;
  right: 0;
  bottom: 0px;
  width: 20px;
  height: 20px;
}

/* Panda's Nose Styles */
.nose {
  position: absolute;
  height: 20px;
  width: 35px;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50px 20px 30px 15px;
  transform: rotate(15deg);
  background: #000;
}

/* Panda's Body Styles */
.body {
  background: #fff;
  position: absolute;
  top: 200px;
  left: -20px;
  border-radius: 100px 100px 100px 100px / 126px 126px 96px 96px;
  width: 250px;
  height: 282px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
}

/* Panda's Hands Styles */
.hand {
  width: 40px;
  height: 30px;
  border-radius: 50px;
  box-shadow: 0 2px 3px rgba(0,0,0,.15);
  background: #000;
  margin: 5px;
  position: absolute;
  top: 70px;
  left: -25px;
}

/* Panda's Right Hand (Similar to Left Hand) */
.hand:after,
.hand:before {
  content: '';
  width: 40px;
  height: 30px;
  border-radius: 50px;
  margin: 5px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, .15);
  background: #000;
  left: -5px;
  top: 11px;
  position: absolute;
}

/* Panda's Right Hand (Similar to Left Hand) */
.hand:before {
  top: 26px;
}

/* Panda's Right Hand Styles */
.hand.rgt {
  left: auto;
  right: -25px;
}

/* Panda's Right Hand (Similar to Left Hand) */
.hand.rgt:after,
.hand.rgt:before {
  left: auto;
  right: -5px;
}


/* Panda's Feet Styles */
.foot {
  top: 360px;
  left: -80px;
  position: absolute;
  background: #000;
  z-index: 1400;
  box-shadow: 0 5px 5px rgba(0, 0, 0, .2);
  border-radius: 40px 40px 39px 40px / 26px 26px 63px 63px;
  width: 82px;
  height: 120px;
}

/* Panda's Feet (Lower Part) */
.foot:after {
  content: '';
  width: 55px;
  height: 65px;
  background: #222;
  border-radius: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
}

/* Panda's Fingers Styles */
.foot .finger {
  position: absolute;
  width: 25px;
  height: 35px;
  background: #222;
  border-radius: 100%;
  top: 10px;
  right: 5px;
}

/* Panda's Fingers (Left Side) */
.foot .finger:after,
.foot .finger:before {
  content: '';
  width: 25px;
  height: 35px;
  background: #222;
  border-radius: 100%;
  top: 10px;
}

/* Panda's Fingers (Right Side) */
.foot .finger:before {
  right: 30px;
  top: 5px;
}

/* Panda's Right Foot (Similar to Left Foot) */
.foot.rgt {
  left: auto;
  right: -80px;
}

/* Panda's Right Foot Fingers (Similar to Left Foot) */
.foot.rgt .finger {
  left: 5px;
  right: auto;
}

/* Panda's Right Foot Fingers (Similar to Left Foot) */
.foot.rgt .finger:after {
  left: 30px;
  right: auto;
}

/* Panda's Right Foot Fingers (Similar to Left Foot) */
.foot.rgt .finger:before {
  left: 55px;
  right: auto;
}

/* Form Styles */
form {
  display: none;
  max-width: 400px;
  padding: 20px 40px;
  background: #fff;
  height: 300px;
  margin: auto;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .15);
  transition: .3s;
  position: relative;
  transform: translateY(-100px);
  z-index: 500;
  border: 1px solid #eee;
}

/* Form Slide-Up Animation */
form.up {
  transform: translateY(-180px);
}

/* Header Styles */
h1 {
  color: #FF4081;
  font-family: 'Dancing Script', cursive;
}

/* Button Styles */
.btn {
  background: #fff;
  padding: 5px;
  width: 120px;
  height: 35px;
  border: 1px solid #FF4081;
  margin-top: 25px;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 50px #FF4081 inset;
  color: #fff;
}

/* Button Hover Styles */
.btn:hover {
  box-shadow: 0 0 #FF4081 inset;
  color: #FF4081;
}

/* Button Focus Styles */
.btn:focus {
  outline: none;
}

/* Form Group Styles */
.form-group {
  position: relative;
  font-size: 15px;
  color: #666;
}

/* Form Group Margin for Spacing */
.form-group + .form-group {
  margin-top: 30px;
}

/* Form Label Styles */
.form-label {
  position: absolute;
  z-index: 1;
  left: 0;
  top: -8px;
  transition: .3s;
}

/* Form Control Styles */
.form-control {
  width: 100%;
  position: relative;
  z-index: 3;
  height: 35px;
  background: none;
  border: none;
  padding: 5px 0;
  transition: .3s;
  border-bottom: 1px solid #777;
  color: #555;
}

/* Form Control Focus Styles */
.form-control:invalid {
  outline: none;
}

.form-control:focus, .form-control:valid {
  outline: none;
  box-shadow: 0 1px #FF4081;
  border-color: #FF4081;
}

/* Form Label Focus Styles */
.form-control:focus + .form-label {
  font-size: 12px;
  color: #FF4081;
  transform: translateY(-15px);
}

/* Alert Styles (For Invalid Credentials) */
.alert {
  position: absolute;
  color: #f00;
  font-size: 16px;
  right: -180px;
  top: -300px;
  z-index: 200;
  padding: 30px 25px;
  background: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: .4s .6s linear;
}

/* Alert Circles (Before and After) */
.alert:after, .alert:before {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  background: #fff;
  left: -19px;
  bottom: -8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  border-radius: 50%;
}

.alert:before {
  width: 15px;
  height: 15px;
  left: -35px;
  bottom: -25px;
}

/* Wrong Entry Animation */
.wrong-entry {
  animation: wrong-log 0.3s;
}

/* Display Alert on Wrong Entry */
.wrong-entry .alert {
  opacity: 1;
  transform: scale(1);
}

/* Keyframe Animation: Eye Blink */
@keyframes eye-blink {
  to {
    height: 30px;
  }
}

/* Keyframe Animation: Wrong Entry Shake */
@keyframes wrong-log {
  0%, 100% {
    left: 0px;
  }
  20%, 60% {
    left: 20px;
  }
  40%, 80% {
    left: -20px;
  }
}


.login-heading {
margin:8px;

}