        .photographe-login-shell {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            background: #f8fafc;
            font-family: inherit;
        }
        .photographe-login-card {
            width: 100%;
            max-width: 440px;
            background: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 24px;
            box-shadow: 0 24px 48px rgba(15, 23, 42, .08);
            padding: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .photographe-login-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 24px;
        }
        .photographe-login-logo-wrap {
            display: block;
            margin-bottom: 16px;
        }
        .photographe-login-logo {
            display: block;
            width: 120px;
            height: auto;
        }
        .photographe-login-title {
            margin: 0 0 4px;
            color: #1e293b;
            font-size: 20px;
            font-weight: 600;
            line-height: 1.3;
            text-align: center;
        }
        .photographe-login-description {
            margin: 0;
            color: #64748b;
            font-size: 15px;
            line-height: 1.55;
            text-align: center;
        }
        .photographe-login-error {
            width: 100%;
            margin: 0 0 20px;
            padding: 12px 14px;
            border: 1px solid #fecaca;
            border-radius: 12px;
            background: #fef2f2;
            color: #b91c1c;
            font-size: 14px;
            line-height: 1.5;
        }
        .photographe-login-success {
            width: 100%;
            margin: 0 0 20px;
            padding: 14px 16px;
            border: 1px solid #bbf7d0;
            border-radius: 14px;
            background: #ecfdf5;
            color: #166534;
            font-size: 14px;
            line-height: 1.55;
        }
        .photographe-login-form {
            width: 100%;
            display: grid;
            gap: 20px;
            position: relative;
            isolation: isolate;
        }
        .photographe-login-field {
            display: grid;
            gap: 8px;
        }
        .photographe-login-field > span {
            color: #334155;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
        }
        .photographe-login-field input {
            width: 100%;
            height: 48px;
            box-sizing: border-box;
            border: 1px solid #d1d5db;
            border-radius: 12px;
            padding: 0 14px;
            font-size: 15px;
            color: #0f172a;
            background: #ffffff;
        }
        .photographe-login-field input:focus {
            outline: none;
            border-color: var(--photographe-brand-emphasis);
            box-shadow: 0 0 0 4px rgba(47, 111, 163, .12);
        }
        .photographe-login-password {
            position: relative;
            z-index: 0;
        }
        .photographe-login-password input {
            padding-right: 50px;
        }
        .photographe-login-password-toggle {
            position: absolute;
            top: 39px;
            right: 12px;
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 0;
            background: transparent;
            color: #94a3b8;
            cursor: pointer;
            padding: 0;
        }
        .photographe-login-password-toggle:hover,
        .photographe-login-password-toggle:focus-visible {
            color: #475569;
            outline: none;
        }
        .photographe-login-password-toggle svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        .photographe-login-password-toggle__hide {
            display: none;
        }
        .photographe-login-password-toggle.is-visible .photographe-login-password-toggle__show {
            display: none;
        }
        .photographe-login-password-toggle.is-visible .photographe-login-password-toggle__hide {
            display: block;
        }
        .photographe-login-submit {
            width: 100%;
            margin-top: 20px;
            border-radius: 12px;
            min-height: 48px;
        }
        .photographe-login-links {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding-top: 16px;
        }
        .photographe-login-links a {
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: color .2s ease;
        }
        .photographe-login-links a:first-child {
            color: #64748b;
        }
        .photographe-login-links a:first-child:hover,
        .photographe-login-links a:first-child:focus-visible {
            color: #334155;
            outline: none;
        }
        .photographe-login-links a:last-child {
            color: var(--photographe-brand-strong);
        }
        .photographe-login-links a:last-child:hover,
        .photographe-login-links a:last-child:focus-visible {
            color: var(--photographe-brand);
            text-decoration: underline;
            outline: none;
        }
