/* Sign-in screen (Views/Account/Login.cshtml via _LoginLayout).

   Same visual language as the public marketing site: the KennelGeek-family cyan
   #3cbedc on warm greys, the dark patterned field behind the card, condensed
   uppercase display type for the wordmark. Tokens and the button/reset rules come
   from public-theme.css, which _LoginLayout loads first. */

body.pb-login {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    color: var(--pb-ink);
    font-family: var(--pb-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Same treatment as the marketing hero, so the hand-off from the site to the
       app does not look like a different product. */
    background-color: var(--pb-chrome-deep);
    background-image:
        linear-gradient(150deg, rgba(60, 190, 220, 0.30) 0%, rgba(48, 48, 48, 0.88) 55%, rgba(28, 28, 28, 0.96) 100%),
        url('../img/public/paw-pattern.svg');
    background-size: cover, 260px 260px;
    background-position: center center, center center;
    background-repeat: no-repeat, repeat;
    background-attachment: fixed, fixed;
}

.login-shell {
    width: 100%;
    max-width: 430px;
}

.login-card {
    display: block;
    background: var(--pb-surface);
    border-top: 5px solid var(--pb-accent);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.login-head {
    background: var(--pb-chrome);
    padding: 30px 32px 26px;
    text-align: center;
}

.login-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    font-family: var(--pb-display);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
}

.login-brand:hover {
    color: #fff;
    text-decoration: none;
}

.login-brand-mark {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    color: var(--pb-accent);
}

.login-brand-name em {
    font-style: normal;
    color: var(--pb-accent);
}

.login-kicker {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.login-body {
    padding: 36px 32px 32px;
    text-align: center;
}

.login-title {
    margin: 0 0 6px;
    color: var(--pb-chrome);
    font-family: var(--pb-display);
    font-weight: 400;
    font-size: 1.9rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.login-message {
    margin: 0 0 28px;
    color: var(--pb-muted);
    font-weight: 300;
}

.login-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
}

.login-submit-icon {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
}

.login-foot {
    padding: 18px 32px 22px;
    background: var(--pb-wash);
    border-top: 1px solid var(--pb-rule);
    text-align: center;
}

.login-secure {
    margin: 0;
    color: var(--pb-muted);
    font-size: 0.82rem;
}

.login-links {
    margin: 6px 0 0;
    font-size: 0.82rem;
}

.login-links a {
    color: var(--pb-accent-dark);
    text-decoration: none;
}

.login-links a:hover {
    color: var(--pb-accent);
    text-decoration: underline;
}

@media (max-width: 420px) {
    .login-head {
        padding: 24px 22px 20px;
    }

    .login-body {
        padding: 28px 22px 26px;
    }

    .login-foot {
        padding: 16px 22px 20px;
    }
}
