@import url("https://fonts.googleapis.com/css?family=Roboto:300,700");
* {
  font-family: "Roboto", sans-serif;
}

@keyframes init {
  0% {
    transform: rotate(-90deg) scale(0.8);
    filter: FlipH;
    -ms-filter: "FlipH";
  }
  25% {
    transform: scaleY(1) rotate(-90deg) scale(0.7);
    filter: FlipH;
    -ms-filter: "FlipH";
  }
  50% {
    transform: scaleY(-1) rotate(-90deg) scale(0.7);
    filter: FlipH;
    -ms-filter: "FlipH";
  }
  75% {
    transform: scaleY(1) rotate(-90deg) scale(0.7);
    filter: FlipH;
    -ms-filter: "FlipH";
  }
  100% {
    transform: scaleX(1) rotate(0deg) scale(1);
    filter: FlipH;
    -ms-filter: "FlipH";
  }
}
@keyframes eyes {
  0% {
    height: 10px;
  }
  84% {
    height: 10px;
  }
  94% {
    height: 2px;
  }
  100% {
    height: 10px;
  }
}
html, body, .c-login {
  min-height: 100%;
  body: 100%;
  margin: 0;
}

.c-login {
  background-color: #ffffff;
  /* fallback for old browsers */

  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 30px;
}

.background-monkey {
  background-color: #fff;
  width: 200px;
  height: 200px;
  padding: 30px;
  border-radius: 100%;
  margin: 0 auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.background-monkey:hover .c-monkey {
  transform: scale(0.9) rotate(-30deg);
}
.background-monkey:hover .c-monkey .face:after, .background-monkey:hover .c-monkey .face:before {
  background-color: #f897cd;
  box-shadow: 0px 0px 14px 8px #f897cd;
}
.background-monkey:hover .c-monkey .eye:after, .background-monkey:hover .c-monkey .eye:before {
  width: 8px;
  height: 4px;
  animation: none;
  border: 4px solid #55433f;
  border-bottom: none;
  background-color: transparent;
  border-radius: 30px 30px 0 0;
}

.c-monkey {
  display: flex;
  align-items: center;
  margin: 0 auto;
  flex-flow: column;
  transform: scale(1);
  transition: 0.3s all ease;
  animation: init 5s;
}
.c-monkey .head {
  display: inline-flex;
  position: relative;
}
.c-monkey .head .top .base, .c-monkey .head .top .half-circle {
  z-index: 2;
  border: 7px solid #3E2723;
  border-bottom: none;
  border-radius: 90px 90px 0 0;
  position: absolute;
}
.c-monkey .head .top .base {
  width: 75px;
  height: 30px;
  margin: 0 auto;
  background-color: #766154;
  top: 1px;
  left: 0;
  right: 0;
}
.c-monkey .head .top .half-circle {
  width: 36px;
  height: 20px;
  background-color: #d0b39a;
}
.c-monkey .head .top .half-circle.left {
  transform: rotate(-18deg);
  top: 19px;
  left: 14px;
}
.c-monkey .head .top .half-circle.right {
  transform: rotate(18deg);
  top: 19px;
  right: 14px;
}
.c-monkey .head .face {
  width: 75px;
  height: 75px;
  background-color: #d0b39a;
  border-radius: 100%;
  z-index: 1;
  border: 7px solid #3E2723;
}
.c-monkey .head .face:after, .c-monkey .head .face:before {
  content: "";
  width: 1vh;
  height: 0.5vh;
  border-radius: 50%;
  background-color: transparent;
  box-shadow: 0px 0px 14px 8px transparent;
  position: absolute;
  top: 60px;
  z-index: 0;
  transition: 0.3s all ease;
}
.c-monkey .head .face:before {
  left: 40px;
}
.c-monkey .head .face:after {
  right: 40px;
}
.c-monkey .head .eye {
  position: absolute;
  top: 41px;
  z-index: 5;
}
.c-monkey .head .eye.left {
  left: 37px;
}
.c-monkey .head .eye.right {
  right: 37px;
}
.c-monkey .head .eye:after {
  content: "";
  display: inline-block;
  background-color: #3E2723;
  width: 12px;
  animation: eyes 4s infinite;
  border-radius: 100%;
}
.c-monkey .head .ear {
  width: 30px;
  height: 30px;
  background-color: #766154;
  border-radius: 100%;
  border: 7px solid #3E2723;
  margin-top: 10px;
}
.c-monkey .head .ear.left {
  margin-right: -25px;
}
.c-monkey .head .ear.right {
  margin-left: -25px;
}
.c-monkey .head .mouth {
  z-index: 1;
  margin: 0 auto;
  width: 35px;
  height: 35px;
  border: 7px solid #3E2723;
  border-radius: 100%;
  position: absolute;
  bottom: -17px;
  left: 0;
  right: 0;
  display: inline-flex;
  justify-content: center;
}
.c-monkey .head .mouth:after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #3E2723;
  transform: translateY(-45%);
}
.c-monkey .key {
  position: relative;
  left: 4px;
}
.c-monkey .key .base {
  height: 93px;
  width: 22px;
  background-color: #d0b39a;
  border: 7px solid #3E2723;
  margin-top: -15px;
}
.c-monkey .key .side {
  width: 7px;
  transform: translateX(-100%);
  position: absolute;
  top: -5px;
}
.c-monkey .key .side .square {
  width: 9px;
  height: 25px;
  background: #d0b39a;
  border-left: 7px solid #3E2723;
}
.c-monkey .key .side .triangle {
  width: 14px;
  height: 10px;
  background: #d0b39a;
  display: inline-block;
  border-left: 7px solid #3E2723;
  border-bottom: 7px solid #3E2723;
  transform: rotate(45deg);
  border-radius: 0 0 0 5px;
}
.c-monkey .key .side .triangle.first {
  border-left: 7px solid #d0b39a;
  margin-top: -8px;
}
.c-monkey .key .bottom {
  width: 22px;
  height: 25px;
  background-color: #d0b39a;
  border-bottom: 7px solid #3E2723;
  border-left: 7px solid #3E2723;
  border-right: 7px solid #3E2723;
  margin-top: -15px;
  border-radius: 0 0 20px 20px;
}

.title {
  font-weight: 300;
  text-align: center;
  font-size: 2.5em;
  color: #3E2723;
}

.c-form {
  display: flex;
  flex-flow: column;
  max-width: 300px;
  margin: 0 auto;
}
.c-form .link {
  color: #3E2723;
  text-decoration: none;
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
}
.c-form .link:hover {
  text-decoration: underline;
}

.c-input {
  margin-bottom: 8px;
  border: none;
  padding: 15px;
  border-radius: 20px;
  font-size: 14px;
  transition: 0.3s all ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.c-input, .c-input:focus {
  outline: none;
}
.c-input:focus, .c-input:active {
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.5);
}

.c-button {
  border: none;
  margin: 0 auto 15px;
  min-width: 200px;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 20px;
  background-color: #766154;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.c-button.m-dark {
  background-color: #3E2723;
}