@import url(https://fonts.googleapis.com/css?family=Roboto:300);
body {
	background: #333;
	font-family: "Roboto", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.login-page {
	position: relative;
    max-width: 303px;
    margin: 150px auto;
	transition: all 300ms ease-in-out;
}  
.login-page p.copyright,
.login-page p a{
	font-size: 13px; 
}
.login-page .description{
	margin: 10px auto;
	position: relative;
}
.login-page .description a{
	color: #009cff;
	text-decoration: none;
}
.login-page .description a:hover{
	color: #00daff;
}
.login-page .description > a{ 
    padding: 5px 40px;
}
.login-page .description > a,
.login-page .description > a i{
	transition: all 300ms ease-in-out;
}
.login-page .description > a:hover{
	letter-spacing: 3px; 
}
.login-page .description > a i{
	transform: rotate(0deg);
} 
.login-page .description > a:hover i{
	transform: rotate(360deg);
}
@media (max-width: 768px){
		
	.login-page { 
		margin: 20px auto;
	}  
	
}
.form-forgetPassword{
	display: none;
}
.form{ 
	display: block;
}
.form ,.form-forgetPassword{
	position: relative;
	z-index: 1; 
	width: 100%;
	margin: auto;
	height: 40vh;
	padding: 0;
	text-align: center; 
} 
.form input ,.form-forgetPassword input{
    font-family: "Roboto", sans-serif;
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 20px;
    box-sizing: border-box;
    font-size: 16px;
    border-radius: 4px;
	color: #009cff;
}

.form button ,.form-forgetPassword button{
	font-family: "Roboto", sans-serif; 
	background: #009cff;
	width: 100%;
	border-radius: 4px; 
	padding: 15px;
	color: #FFFFFF;
	font-size: 14px; 
	border: 1px solid transparent;
	cursor: pointer;
	box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
	outline: 1px solid;
	outline-color: #009cff;
	outline-offset: 0px;
	text-shadow: none;
	-webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
} 
.section{margin: 0;} 
.form button[disabled=disabled],
.form-forgetPassword button[disabled=disabled],
.form button[disabled=disabled]:hover,
.form-forgetPassword button[disabled=disabled]:hover{
	background: #a5a5a5;
    color: #d0d0d0;
	box-shadow: none;
	cursor: not-allowed;
	outline:0;
	border: none;
}
.form button:hover,
.form button:active,
.form button:focus,
.form-forgetPassword button:hover,
.form-forgetPassword button:active,
.form-forgetPassword button:focus {
	background: rgba(0, 131, 214, 0.9);
	border: 1px solid rgba(0, 131, 214, 0.9);
	box-shadow: inset 0 0 20px rgba(0, 131, 214, 0.60), 0 0 20px rgba(0, 131, 214, 0.60);
	outline-color: rgba(255, 255, 255, 0);
	outline-offset: 15px; 
} 
.form > img ,.form-forgetPassword > img{
  margin: auto;
  margin-bottom: 25px;
}

.results{
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	margin:auto;
}

.results .success,
.results .error { 
	display: none;
	margin: auto;
    width: 270px;
    padding: 10px;
    text-align: center;  
	outline: 1px solid; 
	outline-offset: 0px;
	-webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.results .success { 
    color: #54d600; 
	border: 1px solid #54d600;  
	outline-color: #54d600; 
}
.results .error { 
    color: #ff7474; 
	border: 1px solid #ff7474;  
	outline-color: #ff7474; 
}

.results .success.on,
.results .error.on {  
	outline-offset: 15px; 	
}

.results .success.on {  
	outline-color: rgba(255, 255, 255, 0);
}
.results .error.on {  
	outline-color: rgba(255, 255, 255, 0);
}