/*
 * Login page tweaks (Figma 5104-56881), scoped to the login container so nothing
 * else on the storefront is affected.
 *
 * 1. Asymmetric columns: the login form is wider than the "contact us" column, as in the
 *    design (~968:400). Hyvä's login grid is a symmetric two-column layout by default.
 * 2. Drop the divider Hyvä draws above every form's action row (.actions-toolbar has a
 *    global border-block-start); the design has no line above the buttons.
 */
@media (min-width: 48rem) {
    #customer-login-container {
        grid-template-columns: 2fr 1fr;
    }
}

#customer-login-container .actions-toolbar {
    border-block-start-width: 0;
}
