
/*-----------------------------------------------------------------------------------*/
/*	01.	Custom Logo
/*-----------------------------------------------------------------------------------*/

.login h1 a {
  background-image: url('https://aceschooloflanguages.com/wp-content/uploads/2019/06/acelogo.png');
  -webkit-background-size: contain;
  background-size: contain;
  height: 163px;
  width: 163px;
}



/*-----------------------------------------------------------------------------------*/
/*	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 {
			background: url(https://aceschooloflanguages.com/wp-content/uploads/2017/05/congruent_outline.png);
			 background-repeat: no-repeat; 			 background-position: center center; 			 background-size: cover; 			 background-attachment: inherit; 		} 
body.login:after {
	background-color: rgba(219,211,211,1);
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
}

body #login {
    z-index: 2;
    position: relative;
}

 
