.public-not-found-card {
            box-sizing: border-box;
            padding: 42px 34px;
            border: 1px solid #e1e7eb;
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 10px 24px rgba(30, 45, 60, .05);
            text-align: center;
        }

        .public-not-found-code {
            margin: 0 0 10px;
            color: #2bb86f;
            font-size: 64px;
            font-weight: 900;
            line-height: 1;
        }

        .public-not-found-card h1 {
            margin: 0 0 16px;
            color: #12304a;
            font-size: 28px;
            font-weight: 900;
            line-height: 1.45;
        }

        .public-not-found-card p:not(.public-not-found-code) {
            margin: 0;
            color: #52616c;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.9;
        }

        .public-not-found-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
            margin-top: 28px;
        }

        .public-not-found-actions a {
            display: inline-flex;
            min-width: 210px;
            min-height: 50px;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 900;
        }

        .public-not-found-primary {
            background: linear-gradient(90deg, #24a9b6, #5bb33e);
            color: #fff;
        }

        .public-not-found-secondary {
            border: 1px solid #2fb563;
            background: #fff;
            color: #229653;
        }

        body:has(.public-not-found) .login {
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
        }

        body:has(.public-not-found) main {
            flex: 1;
            align-items: flex-start;
        }

        body:has(.public-not-found) footer {
            margin-top: auto;
        }

        @media screen and (min-width: 769px) {
            .public-not-found {
                padding-top: 48px;
                padding-bottom: 48px;
            }
        }

        @media screen and (max-width: 768px) {
            .public-not-found {
                display: block;
                margin-top: 70px;
            }

            .public-not-found-card {
                padding: 30px 18px;
            }

            .public-not-found-code {
                font-size: 56px;
            }

            .public-not-found-card h1 {
                font-size: 24px;
            }

            .public-not-found-actions a {
                width: 100%;
                min-width: 0;
            }
        }