html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f7f7f8;
    color: #333;
}

.landing-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.landing-card {
    width: 100%;
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 50vw;
    height: auto;
    margin: 0 auto;
}

.contact-button {
    min-width: 11rem;
    background: #6f45b7;
    border-color: #6f45b7;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
}

.contact-button:hover,
.contact-button:focus {
    background: #5f3ba1;
    border-color: #5f3ba1;
}

.anti-spam-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 575.98px) {
    .landing-shell {
        padding: 1.25rem;
    }

    .brand-logo {
        max-width: 50vw;
    }
}
