/* ============ A11yBridge Custom Login Style ============ */

/* Hintergrund */
body.login {
    background: #B6C4C7; /*linear-gradient(135deg, #3f51b5, #5c6bc0);*/
    color: #686666;
    font-family: 'Segoe UI', sans-serif;
}

/* Logo */
body.login h1 a {
    background-image: url('https://a11ybridge.de/wp-content/uploads/Logo.png?v=1.0.0');
    background-size: contain;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
}

/* Formularbox */
.login form {
    background: #B6C4C7;
    border: none;
    border-radius: 10px;
    padding: 26px 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    color: #686666;
}

/* Button */
.wp-core-ui .button-primary {
    background: #3f51b5;
    border-color: #3f51b5;
    box-shadow: none;
    text-shadow: none;
    transition: background 0.3s ease;
}
.wp-core-ui .button-primary:hover {
    background: #283593;
}

/* Links */
.login #nav a, .login #backtoblog a {
    color: #ffffff;
    text-shadow: none;
}

.login #backtoblog {
    display: none; /* "Zurück zur Seite"-Link ausblenden */
}

/* Fußzeile ausblenden oder gestalten */
.login #nav {
    text-align: center;
    margin-top: 20px;
}
