/* Hintergrund */
body.login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: #fff;

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

#login {
    padding: 20px 0 0 0;
    margin: 0;
    background-color: #fff;
}

/* Login Box */
.login form {
    background: transparent;
    border-radius: none;
    box-shadow: none;
    border: none;
}

/* Logo (Bild kommt per Inline-CSS aus dem Customizer) */
.login h1 a {
    background-image: none;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 220px;
    height: 90px;
}

/* Labels / Text */
.login label {
    color: #000000;
}

.login #backtoblog a,
.login #nav a {
    color: #333333;
}

.login #backtoblog a:hover,
.login #nav a:hover {
    color: #000000;
}

/* Inputs */
.login input[type="text"],
.login input[type="password"] {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #333333;
}
.login input[type="text"]:focus,
.login input[type="password"]:focus {
    border-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
    outline: none;
}

/* Primary Button */
.wp-core-ui .button-primary {
    background: #333333;
    border-color: #333333;
    box-shadow: none;
    text-shadow: none;
}
.wp-core-ui .button-primary:hover,
.wp-core-ui .button-primary:focus {
    /* background: #ffffff; */
    /* border-color: #ffffff; */
    background: #222222;
    border-color: #222222;
}
