body { 
  font: 87.5%/1.5em 'Open Sans', sans-serif;	
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;} 
 
.form-wrapper {
width:auto;
height:auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -184px 0px 0px -155px;
  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{
  font-size: 25px;
  font-weight: 640;
  margin-bottom: 10px;
  color: #e7e7e7;
  padding:6px;
  font-family:'sans-serif','helvetica';
}
 
.form-item input{
  border: none;
  background:transparent;
  color:black;
  margin-top:11px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4em;
  height: 40px;
  padding: 0 2px;
  width: auto;
  padding-left: 35px;
  border: 2px blue;
  shadow:1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
}
input[type='password']{
	background: transparent url("../../auth/img/pass.png") no-repeat;
	background-position: 10px 50%;
	 width: auto;
}
input[type='text']{
	background: transparent url("../../auth/img/user.png") no-repeat;
	background-position: 10px 50%;
	 width: auto;
 
}
input[type='email']{
	background: transparent url("../../auth/img/mail.png") no-repeat;
	background-position: 10px 50%;
 
}
input[type='tel']{
	background: transparent url("../../auth/img/phone.png") 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;
  cursor: pointer;
  height: 50px;
  font-family: 'helvetica','Open Sans', sans-serif;
  font-size: 1.2em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.6s linear;
  width: 100%;
  margin-top:10px;
}
 
.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;
}
.error{
	font-size: 1.2em;
} 
.reminder a:hover {
  color: #cab6bf;
}
input[type="checkbox"] {
    display:none;
}
input[type="checkbox"] {
    display:inline-block;
    width:15px;
    height:15px;
    margin:-1px 4px 0 0;
    vertical-align:middle;
    background:url("../../auth/img/check.png") left top no-repeat;
    cursor:pointer;
}
input[type="checkbox"]:checked {
    background:url("../../auth/img/check.png") -15px top no-repeat;
}