
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Сервис переехал</title>

    <style>
        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;

            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
            background: #f4f6f8;
            color: #1f2937;
        }

        .card {
            width: 100%;
            max-width: 620px;
            padding: 48px;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
        }

        .icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;
            background: #eef4ff;
            color: #2563eb;
            font-size: 30px;
            font-weight: 600;
        }

        h1 {
            margin: 0 0 14px;
            font-size: 30px;
            font-weight: 600;
        }

        .description {
            margin: 0 0 30px;
            font-size: 17px;
            line-height: 1.6;
            color: #6b7280;
        }

        .new-address {
            margin: 0 0 28px;
            padding: 24px;

            background: #eef4ff;
            border: 2px solid #2563eb;
            border-radius: 12px;
        }

        .new-address-label {
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .new-address a {
            color: #1d4ed8;
            font-size: 25px;
            font-weight: 700;
            text-decoration: none;
            word-break: break-word;
        }

        .new-address a:hover {
            text-decoration: underline;
        }

        .button {
            display: inline-block;
            padding: 14px 28px;

            background: #2563eb;
            color: #ffffff;
            text-decoration: none;

            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
        }

        .button:hover {
            background: #1d4ed8;
        }

        .hint {
            margin-top: 24px;
            font-size: 14px;
            line-height: 1.5;
            color: #9ca3af;
        }
    </style>
</head>

<body>

<div class="card">

    <div class="icon">→</div>

    <h1>Сервис переехал</h1>

    <p class="description">
        Сервис теперь доступен по новому адресу.
        Пожалуйста, используйте его для дальнейшей работы.
    </p>

    <div class="new-address">
        <div class="new-address-label">Новый адрес</div>

        <a href="https://lk.eiasmo.mosreg.ru">
            lk.eiasmo.mosreg.ru
        </a>
    </div>

    <a class="button" href="https://lk.eiasmo.mosreg.ru">
        Перейти на новый сайт →
    </a>

    <div class="hint">
        Рекомендуем обновить закладки браузера<br>
        и сохранить новый адрес.
    </div>

</div>

</body>
</html>