/* LOGO FORMULARIO DE LOGIN */
#login h1 a {
	background-image: url("img/logo.png");
	background-size: auto auto;
    width: auto;
}

/* PERSONALIZAR FONDO */

body {
	background: #fff;
}

/* PERSONALIZAR FORMULARIO */

.login form {
    margin-top: 20px;
    margin-left: 0;
    padding: 26px 24px 46px;
    font-weight: 400;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px #555d668a;
	border-radius: 5px;
}

/* TEXTO DEBAJO DEL FORMULARIO */

.login #backtoblog, .login #nav {
    font-size: 16px;
    padding: 0 24px 0;
    text-align: center;
}
.login #backtoblog a:hover, .login #nav a:hover, .login h1 a:hover {
    color: #d66b2b;
}

/* Eliminar el enlace de password olvidado */
p#nav {
  display: none;
}

/* Eliminar el enlace de volver a la Home */
p#backtoblog {
  display: none;
}

/* BOTON ACCEDER */

.wp-core-ui .button-primary {
    background: #3d3d3d;
    border-color: transparent;
    box-shadow: none;
    color: #fff;
    text-decoration: none;
    text-shadow: none;
}

.wp-core-ui .button-group.button-large .button, .wp-core-ui .button.button-large {
    height: 30px;
    line-height: 28px;
    padding: 0 30px 2px;
}

.wp-core-ui .button-primary.focus, .wp-core-ui .button-primary.hover, .wp-core-ui .button-primary:focus, .wp-core-ui .button-primary:hover {
    background: #3d3d3d;
    border-color: transparent;
    color: #fff;
}

/*INPUT FORMULARIO LOGIN*/
.login form .input, .login form input[type="checkbox"], .login input[type="text"] {

    background: #fff;
    border-radius: 5px;

}

/* COLOR LINK */

a {

    color: #3d3d3d;
    transition-property: border,background,color;
    transition-duration: .05s;
    transition-timing-function: ease-in-out;
    text-decoration: none;

}

a:active, a:hover {
    color: #3d3d3d;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}