@import url("//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css");
@import url("//fonts.googleapis.com/css?family=Droid+Sans");
html, body {
  background: #11009c;
  padding: 0;
  margin: 0;
}
 .button {
   box-shadow: 0px 15px 0 20px #352d2d, 0px 40px 0 30px #000;
   cursor: pointer;
   background-color: #c0392b;
   position: absolute;
   border-radius: 50%;
   top: 50%;
   left: 50%;
   width: 280px;
   height: 80px;
   transform: translateX(-50%);
}
 .button::before {
   content: '';
   z-index: 1;
   border-radius: 50%;
   background-color: #e74c3c;
   position: absolute;
   bottom: 100%;
   left: 0%;
   transition: bottom 0.4s;
   width: 276px;
   height: 80px;
}
 .button::after {
   content: '';
   background-color: #c0392b;
   position: absolute;
   bottom: 50%;
   left: 0%;
   width: 276px;
   height: 80px;
   transition: height 0.4s;
}
 .button:active::before {
   bottom: 10%;
}
 .button:active::after {
   height: 10%;
}

#wrap {
  box-sizing: border-box;
  min-width: 320px;
  max-width: 600px;
  margin: 0 auto;
  overflow: visibe;
  text-align: center;
}
#wrap h2 {
  font-size: 2em;
  padding: 30px;
  font-family: 'Droid Sans', Arial, sans-serif;
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.2) 1px 1px 0;
}
#wrap #fullscreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #11009c;
  z-index: 1000;
  padding: 0;
  margin: 0;
}
#wrap #fullscreen i {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1em;
  color: #c0c0c0;
}
#wrap #fullscreen .form-wrap {
  margin: 50px auto;
  min-height: 300px;
  max-width: 600px;
  min-width: 320px;
}
#wrap #fullscreen .form-wrap h1 {
  font-family: 'Droid Sans', Arial, sans-serif;
  color: #c0c0c0;
}
#wrap #fullscreen .form-wrap form label {
  display: none;
  width: 100%;
}
#wrap #fullscreen .form-wrap form input {
  margin: 0 auto;
  border: 1px solid #c0c0c0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  display: block;
  width: 70%;
  padding: 10px;
  margin-bottom: 10px;
  -moz-border-radius: 10px 10px / 10px 10px;
  -webkit-border-radius: 10px 10px;
  border-radius: 10px 10px / 10px 10px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
  font-size: 0.875em;
  color: #444;
}
#wrap #fullscreen .form-wrap form input:hover {
  -moz-box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 1px inset;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 1px inset;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 1px inset;
}
#wrap #fullscreen .form-wrap form input:active {
  -moz-box-shadow: rgba(0, 0, 0, 0.4) 1px 1px 1px inset;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 1px 1px 1px inset;
  box-shadow: rgba(0, 0, 0, 0.4) 1px 1px 1px inset;
}
#wrap #fullscreen .form-wrap button {
  float: right;
  margin-right: 90px;
  color: #fff;
}

a.plug {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  font-family: 'Droid Sans', Arial, sans-serif;
  text-decoration: none;
  color: #fff;
}