body {
  color: #fff;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
}

.apptitle {
  text-align: center;
  margin-top: 30px;
}

.apptitle img {
  width: 80%;
  opacity: 0.7;
}

.form-wrapper {
margin-right: auto;
margin-left: auto;
max-width: 500px;
margin-top: auto;
margin-bottom: auto;
height: 700px;
  background: rgba(0,0,0,0.27);
  padding: 15px 25px;
  border-radius: 5px;
  box-shadow: 0px 1px 0px rgba(0,0,0,0.6),inset 0px 1px 0px rgba(255,255,255,0.04);
}

.form-item {
width:100%;
}


h3{
  margin-bottom: 10px;
  color: lightblue;
  padding:3px;
  text-align: center;
  font-size: 25px;
  font-weight: normal;
  font-family: Courier New;
  background: darkgray;
  border-radius: 7px;
}



.form-item input{
  border: none;
  margin-top:25px;
  height: 60px;
  padding: 0 16px;
  width: 100%;
  padding-left: 55px;
  font-size: 18px;

}
input[type='password']{
	background: white url("../img/pass.jpg") no-repeat;
	background-position: 10px 50%;
}
input[type='text']{
	background: white url("../img/user.jpg") no-repeat;
	background-position: 10px 50%;

}

.form-item input:focus {
  outline: none;
  border:1.4px solid #cfecf0;
}

.button-panel {
  margin-bottom: 20px;
  padding-top: 10px;
  width: 100%;
}

.button-panel .button {
  background: #00b6df;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  height: 50px;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.6s linear;
  width: 100%;
  margin-top:20px;
}

.button:hover {
  background: #6eb7cb;
}

.form-item input, .button-panel .button {
  border-radius: 2px
}

.reminder {
  text-align: center;
}

.reminder a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.reminder a:hover {
  color: #cab6bf;
}