/*
 * Business / seller (+Business) palette.
 *
 * Applied two ways:
 *   - as the domain theme (DomainProfiles -> ThemeCss), so shared pages such as Forgot Password,
 *     Reset Password and Logout follow the business brand on the business domain, and
 *   - linked directly by BusinessLogin.cshtml so that page keeps its colors on any host.
 */

:root {
    --brand-primary: #1565c0;
    --brand-primary-hover: #0d47a1;
    --brand-on-primary: #ffffff;
    --brand-page-bg: lightgray;
}

/* Brand: "+Business" in bold blue, "Comfy+" slightly faded below. */
.brand-business {
    color: var(--brand-primary);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 0;
}

.brand-comfy {
    color: #6c757d;
    opacity: 0.7;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 2px;
    margin-bottom: 10px;
}
