/* Logo */

.support-image {
    display: flex;
    flex-direction: column; /* Change from row to column */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
}

.support-image img {
    max-width: 100%;
    height: auto;
    /* Ensure the image never exceeds the usable viewport height */
    max-height: calc(var(--vh, 1vh) * 100 - 80px);
}

/* Paragraphs */

h1 {
    margin-bottom: 2.5rem;
}

p {
    margin-bottom: 2.5rem;
}

a {
    color: #fff;
}

/* Page-specific: add 16px padding to the shared container on contact page */
body.login-page .container {
    padding-inline: 1rem;
}
