
/*-----------------------------------------------------------------------------------*/
/*	01.	Custom Logo
/*-----------------------------------------------------------------------------------*/

.login h1 a {
  background-image: url('https://www.artespanex.com/web/wp-content/uploads/2011/01/Concierto-18-12-2010-5.jpg');
  -webkit-background-size: contain;
  background-size: contain;
  height: 48px;
  width: 70px;
}



/*-----------------------------------------------------------------------------------*/
/*	02.	Text and Buttons Color Scheme
/*-----------------------------------------------------------------------------------*/

.login form .input, 
.login input[type=text] {
	opacity: 0.8;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear; 
}

.login form .input:hover, 
.login input[type=text]:hover,
.login form .input:active, 
.login input[type=text]:active,
.login form .input:focus, 
.login input[type=text]:focus {
	opacity: 1;
}


	.login label,
    .login #backtoblog a, 
    .login #nav a {
    	color: #222328;
    }
	


body.login:after {
	background-color: ;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
}

body #login {
    z-index: 2;
    position: relative;
}

 
