/*
 * Our Custom Login Page Stylesheet
 */
 
/* The background
 * This can be image or color, note the !important at the end.
 */
body {
	background-color:#fff !important;
	}
 
/* Title image (The "WordPress Logo") Mus use image as a Background!
 * Remember to update the height and width your image's dimensions 
 */
 
 #login {
 width: 70%;
 }
 
 
 
#login h1 a {	
	background:url("http://www.icse-co.org/brainresources/wp-content/uploads/2013/10/brainresource.jpg") 0 0 no-repeat !important;
	width: 500px;
	height: 200px;
		}
		
 #login p { color: #000; 
 font-size: 1.5em;
 padding-bottom: 15px;
  }
/* The Form  ( The login box )
 * Background color, border, shadow, etc..
 */
#login form {
	background-color:#ccc;
	}
 
/* The Login Fields
 * Username and Password
 */
#login .input {
	background-color:#fff;
	}
 
/* The Labels
 * The text above the fields
 */
#login label {
	color:#fff;
	font-size:15px;
	font-size:1.5rem;
	padding-bottom: 30px;
	}
/*
 * The Submit Button
 */
#login input[type=submit] {
	background-color:#F56800;
	border-radius:0px;
	border:none;
	border-bottom:4px solid #c0392b;
	}
 
#login input[type=submit]:active {}	
		
/*
 * The Back to blog and Forgot Password link
 */
#nav a,
#backtoblog a {
	color:#000 !important;
	}