.inspiration {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  font-family: 'Gill Sans', sans-serif;
  font-size: 12px;
  color: #969696;
}

.inspiration img {
  width: 60px;
}

.center {
  margin: 2% auto 14vh;
  width: 38%;
  max-width: 600px;
  overflow: visible;
  background: #272726;
  border: 1px solid black;
  border-radius: 25px;
  box-shadow: 0px 0px 7px 4px rgb(254 255 255);
  padding: 20px 55px 55px;
}

@media screen and (max-height: 500px) {
  .center {
    margin: 2vh auto;
    transform: none;
  }
}

@media only screen and (max-width: 768px) {
  .center {
    margin: 8vh auto 8vh;
    width: 90%;
    padding: 15px 23px 23px;
  }
}






.center svg.smile {
  position: absolute;
  left: -28px;
  top: -19px;
  transform: scaleX(1.1);
  stroke: #243946;
}




.center .median {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 25px;
  border-radius: 5px;
  background-color: #fcb7bf;
}

.center .login {
  position: relative;
  display: flex;
  flex-direction: column;
}

.center .login label {
  position: relative;
  padding: 0 20px;
}

.center .login label .fa {
  position: absolute;
  top: 40%;
  left: 35px;
  color: #bbb;
}

.center .login label .fa:before {
  position: relative;
  left: 1px;
}

.center .login input,
.center .login .login-button {
  width: 100%;
  height: 35px;
  border: none;
  border-radius: 5px;
}

.center .login input {
  padding: 0 20px 0 40px;
  margin: 5px 0;
  box-shadow: none;
  outline: none;
}

.center .login input::-moz-placeholder {
  color: #ccc;
}

.center .login input:-ms-input-placeholder {
  color: #ccc;
}

.center .login input::placeholder {
  color: #ccc;
}

.center .login input.password {
  padding: 0 90px 0 40px;
}

.center .login .password-button {
  position: absolute;
  top: 9px;
  right: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 27px;
  border-radius: 30px;
  border: none;
  outline: none;
  background-color: #243946;
  color: #fff;
}

.center .login .password-button:active {
  transform: scale(0.95);
}

.center .login .login-button {
  width: calc(100% - 40px);
  margin: 20px 20px 0;
  outline: none;
  background-color: #eb0d15;
  color: #fff;
  transition: transform 0.1s;
}

.center .login .login-button:active {
  transform: scale(0.95);
}

.center .social-buttons {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.center .social-buttons .social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin: 0 10px;
  border-radius: 50%;
  background-color: #243946;
  color: #fff;
  font-size: 18px;
}

.center .social-buttons .social:active {
  transform: scale(0.95);
}

.center .footer {
  text-align: center;
  margin-top: 0;
}

@-webkit-keyframes breath {

  0%,
  100% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(60deg);
  }
}

@keyframes breath {

  0%,
  100% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(60deg);
  }
}