* {
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  height: 100%;
}
.clearfix {
  content: "";
  display: block;
  clear: both;
}
input {
  border: none;
}
#login {
  width: 100%;
  height: 100%;
  position: relative;
  color: #5e5e5e;
  background-color: #edecec;
}
#login:before {
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background: #00bcd4;
  content: '';
  z-index: 0;
}
#login .con {
  width: 500px;
  padding: 40px;
  box-sizing: border-box;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 45%;
  transform: translateY(-45%);
  margin: 0 auto;
}
#login .con h1 {
  width: 100%;
  text-align: center;
  color: #7e7e7e;
  font-weight: 300;
  line-height: 20px;
  font-size: 30px;
  margin-bottom: 10px;
  position: relative;
}
#login .con h1:before,
#login .con h1:after {
  content: '';
  height: 1px;
  position: absolute;
  top: 10px;
  width: 21%;
}
#login .con h1:before {
  background: -webkit-linear-gradient(right, #7e7e7e 0%, #ffffff 100%);
  left: 0;
}
#login .con h1:after {
  background: -webkit-linear-gradient(left, #7e7e7e 0%, #ffffff 100%);
  right: 0px;
}
#login .con .inputLogin input {
  width: 100%;
  margin: 20px 0;
  background: none;
  color: #888;
  border-bottom: 1px solid #f43640;
  padding: 9px 30px 9px 12px;
  box-sizing: border-box;
  outline: none;
  font-size: 16px;
  border-radius: 30px;
}
#login .con .inputLogin input::placeholder {
  color: #888;
}
#login .con .button {
  width: 50%;
  margin: 20px 25% 0 25%;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  background: #f43640;
  border: 1px solid #f43640;
  color: #fff;
  border-radius: 30px;
  outline: none;
}
#login .con .button:hover {
  color: #f43640;
  background: none;
}
#login .footer {
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  bottom: 0;
  color: #666;
  font-size: 13px;
}
#login .footer a {
  text-decoration: none;
  color: #000;
}
#login .footer a:hover {
  border-bottom: 1px solid #000;
}
