@font-face {
  font-family: 'Helvetica';
  font-style: normal;
  font-weight: 200;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: 300;
}
body {
  font-family: 'Helvetica', sans-serif;
  color: white;
  font-weight: 300;
}
body ::-webkit-input-placeholder {
  /* WebKit browsers */
  font-family: 'Helvetica', sans-serif;
  color: white;
  font-weight: 300;
}
body :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  font-family: 'Helvetica', sans-serif;
  color: white;
  opacity: 1;
  font-weight: 300;
}
body ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  font-family: 'Helvetica', sans-serif;
  color: white;
  opacity: 1;
  font-weight: 300;
}
body :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  font-family: 'Helvetica', sans-serif;
  color: white;
  font-weight: 300;
}
.wrapper {
  background: #1754c2;
  background: linear-gradient(to bottom right, #1754c2 0%, #93a2bf  100%);
  background: -o-linear-gradient(top left, #1754c2 0%, #93a2bf  100%);
  position: absolute;
  top: 38%;
  left: 0;
  width: 100%;
  height: 700px;
  margin-top: -300px;
  overflow: hidden;
}
.wrapper.form-success .container h1 {
  -webkit-transform: translateY(85px);
          transform: translateY(85px);
}
.container {
  max-width: 750px;
  margin: 0 auto;
  padding: 130px 0;
  height: 500px;
  text-align: center;
}
.container h1 {
  font-size: 40px;
  transition-duration: 1s;
  font-weight: 200;
}
.login {
  padding: 20px 0;
  position: relative;
  z-index: 2;
}
.login input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
  width: 650px;
  border-radius: 4px;
  padding: 30px 35px;
  margin: 0 auto 30px auto;
  display: block;
  text-align: center;
  font-size: 50px;
  color: white;
  transition-duration: 0.25s;
  font-weight: 300;
}
.login input:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.login input:focus {
  background-color: white;
  width: 700px;
  color: #6495ed;
}
.login button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  background-color: white;
  border: 0;
  padding: 30px 35px;
  color: #6495ed;
  border-radius: 4px;
  width: 650px;
  cursor: pointer;
  font-size: 60px;
  transition-duration: 0.25s;
}

.login button:hover {
  background-color: #afc9f6;
 
}

.hide
{
	transition: opacity 0.6s; 
	opacity:0;
}

.err
{
	font-size: 36px;
	font-weight: 300;
	color: #c24035;
	padding: 10px 15px;
	text-align: center;
	display:none;
	margin: 0 auto;

}
