* {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}
body {
	overflow:hidden;
	width:100%;
	height:100vh;
	margin:0 ;
	padding:0;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 16px;
	background-image: radial-gradient(at center center, #2fa4e7, #0c3354);
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
}
#wrapper {
	width: 320px;
/*	height: 294px;*/
}

.login-form {
	margin: 0 auto;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.6);
	outline: 1px solid rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.9);
	/* background-color: #fff; */
	border-radius: 6px;
	box-shadow: 0px 4px 12px rgb(0 0 0 / 16%);
}

.login-form .header {
	padding-top: 32px;
	padding-bottom: 6px;
    display: flex;
    justify-content: center;	
}

.login-form .header h1 {
	font-weight: 280;
	font-size: 28px;
	line-height:34px;
	color: #414848;
	text-shadow: 1px 1px 0 rgba(256,256,256,1.0);
	margin-bottom: 10px;
}

.login-form .header span {
	font-size: 11px;
	line-height: 16px;
	color: #678889;
	text-shadow: 1px 1px 0 rgba(256,256,256,1.0);
}

.login-form .content p {
	color: #0c3354;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
/*	margin-bottom: 10px;*/
}
.login-form .content {
	padding: 0 32px 25px 32px;
}

.login-form .content .input {
	width: 100%;
	box-sizing: border-box;
	padding: 8px 15px;
	color: #414848;
	text-shadow: 1px 1px 0 rgba(256,256,256,1.0);	
	background: #fff;
	border: 1px solid #2ea4e7;
	border-radius: 5px;
}

.login-form .content .username, .login-form .content .pass-icon {
	margin-bottom: 10px;
}

.login-form .footer {
	height: 36px;
	padding: 0px 32px 42px 32px;
	overflow: auto;
}

input {
	font-size: 1rem;
}

.login-form .footer input[type="submit"] {
	width: 100%;
	height: 36px;
	color: #fff;
	background: #0c3354;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	cursor: pointer;	
	line-height: 0;
}
.login-form .content input[type="text"]:hover,
.login-form .content input[type="password"]:hover{
	border: 1px solid rgba(12, 51, 84, 0.5);
}
.login-form .content input[type="text"]:focus,
.login-form .content input[type="password"]:focus {
	border: 1px solid rgba(12, 51, 84, 0.3);
	outline: 2px solid rgba(46, 164, 231, 0.5);
}
.login-form .content input[type="text"]::placeholder,
.login-form .content input[type="password"]::placeholder{
	color: #2d333a;
}
.login-form .footer input[type="submit"]:hover {
	background: rgba(46, 164, 231, 1);
}
#wrapper > form > div.content > label {
	font-size: 0.8rem;
	color: #2ea4e7;
	margin-left: 5px;
	visibility: hidden;
}
.login-form .footer .register {
	display: block;
	float: right;
	padding: 10px;
	margin-right: 20px;
	background: none;
	border: none;
	cursor: pointer;
	font-weight: 300;
	font-size: 18px;
	color: #414848;
	text-shadow: 0px 1px 0 rgba(256,256,256,0.5);
}

.login-form .footer .register:hover {
	color: #3f9db8;
}

.login-form .footer .register:focus {
	position: relative;
	bottom: -1px;
}
.login-auth-error{
	width: 318px;
	background: #f35e64;
	border: 1px solid tomato;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
	color: #FFF;
	margin: auto;
	text-align: center;
	padding: 6px 0px;
    position: absolute;
    top: 0;
	text-shadow: 0px 1px 0 tomato;
}
.fadeOutLabel {
	visibility: hidden !important;
	opacity: 0;
	transition: visibility 0s 0.5s, opacity 0.5s linear;
}
.fadeInLabel {
	visibility: visible !important;
	opacity: 1;
	transition: opacity 0.5s linear;
}
.fadeOutInput::placeholder {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s 0.5s, opacity 0.5s linear;
}
.fadeInInput::placeholder {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.5s linear;
}
.parsley-errors-list > li {
	list-style-type: none;
	color: #f35e64;
	font-size: 0.8rem;
}

.spinner {
  margin: auto;
  width: 80px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.spinner > div {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background-color: #0c3354;
  border-radius: 20%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
