
/*-----------------------------------------------------------------------------------*/
/*	01.	Custom Logo
/*-----------------------------------------------------------------------------------*/

.login h1 a {
  background-image: url('https://www.photopfc.org/wp-content/uploads/2019/01/logo_photopfc_48px.png');
  -webkit-background-size: contain;
  background-size: contain;
  height: 48px;
  width: 292px;
}



/*-----------------------------------------------------------------------------------*/
/*	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: rgba(255,255,255,.8);
    }
    
    .wp-core-ui .button-primary {
    	background-color: rgba(255,255,255,.8);
        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;
}

 
