/* Centre the logo */
.header .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.header .logo img {
    max-width: 180px;
    height: auto;
}

/* Black login button */
.button, a.button {
    background-color: #111 !important;
    color: #fff !important;
    border-color: #111 !important;
    border-radius: 4px !important;
}
.button:hover, a.button:hover {
    background-color: #FB711A !important;
    border-color: #FB711A !important;
}

/* Black text throughout */
body, .wrap, .container, p, a, h1, h2, h3, label, input {
    color: #111 !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* Hide "Powered by listmonk" */
footer.container {
    display: none !important;
}

/* Hide the listmonk SVG logo — we use img logo only */
.header .logo svg {
    display: none !important;
}

/* Centre the whole login card */
.center {
    text-align: center;
}
