/* changement de l'image de fond de ma page de connexion WordPress */
body.login{
	background:url('kawa.jpg') no-repeat center center fixed; 
	-webkit-background-size: cover; 
	-moz-background-size: cover; 
	-o-background-size: cover; 
	background-size: cover; 
	position:fixed; 
	top:0; 
	left:0; 
	z-index:10; 
	overflow: hidden; 
	width: 100%; 
	height:100%;
} 

/* changement de la position du formulaire de connexion */
body.login div#login {
	z-index:9999; position:relative;
	box-shadow: none;
	background-color: #11ffee0;
	border-radius: 18px;
}

/* changement du logo de ma page de connexion WordPress */
.login h1 a {
 	background-image: url('logo.png');
	background-size: 100%;
	height: 100px;
	width: 100px;
}

/* changement de l’apparence du formulaire de connexion */
/* changement du cadre de login */
.login form {
	box-shadow: none;
	background-color: #11ffee00;
	border-color: #11ffee00;
	border-radius: 18px;
}
/* changement police et couleur du texte */
.login label {
	font-family: none;
	font-weight: normal;
	font-size: 14px;
	color: black;
	text-shadow: none;
} 
/* changement forme et couleur du champ identifiant */
.login input[type="text"]{ 
	font-family: none;
	font-weight: normal;
	font-size:12px;
	color: black;
	text-shadow: none;
	box-shadow: none;
	background-color: white;
	border-color: #DCDCDC;
	border-radius: 18px;
} 
/* changement forme et couleur du champ mot de passe */
.login input[type="password"]{
	font-family: none;
	font-weight: normal;
	font-size:12px;
	color: black;
	text-shadow: none;
	box-shadow: none;
	background-color: white;
	border-color: #DCDCDC;
	border-radius: 18px;
}

/* changement forme et couleur des champs sélectionnés */
body.login input#user_login:focus, input#user_pass:focus{
	border:1px solid black;
	box-shadow: none;
	background-color: white;
}

/* changement bouton Se connecter */
/* bouton neutre */
.login .button-primary {
	width: 120px;
	float:right;
	background-color: white;
	border-color: #DCDCDC;
	color: black;
	text-shadow: none;
	font-family: none;
	font-weight: normal;
	font-size:14px;
	border-radius: 18px;
	border: 1px #DCDCDC;
	box-shadow: none;
	text-shadow: none;
}

/* bouton survolé */
.login .button-primary:hover { 
	width: 120px;
	float:right;
	background-color: #DCDCDC; 
	border-color: #DCDCDC;
	color: black; 
	text-shadow: none;
	font-family: none;
	font-weight: normal;
	font-size:14px;
	border-radius: 18px; 
	border: 1px #DCDCDC;
	box-shadow: 0 0 0 2px black;
    outline: 0px solid transparent;
    outline-offset: 0;
} 

/* bouton sélectionné */
.login .button-primary:active {
	width: 120px;
	float:right;
	background-color: #DCDCDC;
	border-color: #DCDCDC;
	color: black; 
	text-shadow: none;
	font-family: none;
	font-weight: normal;
	font-size:14px;
	border-radius: 18px; 
	border: 1px #DCDCDC;
	box-shadow: 0 0 0 2px black;
    outline: 0px solid transparent;
    outline-offset: 0;
}

/* TMF icone masquer mdp en N&B pas trouvé pas pour changer cadre */
.dashicons {
	background-color: white; 
	color: black;  
}

/* personnalisation du message d'erreur */
.login #login_error, .login .message {
  -webkit-box-shadow: #DCDCDC;
  background-color: white;
  border-left-color:#DCDCDC;
  border-left-style: solid;
  border-left-width: 4px;
  box-shadow: #DCDCDC;
  font-family: none;
  font-weight: normal;
  font-size:14px;
  color: black;
  text-shadow: none;
  margin-left: 0;
  padding: 12px;
}

/* retirer le lien Mot de passe perdu */
p#nav {
display: none;
}

/* retirer le lien « Retour au site » */
p#backtoblog{
display: none;
}