<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Dashboard</title>
    <style>
        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }
        .container {
            text-align: center;
            max-width: 400px;
            padding: 20px;
        }
        .logo {
            width: 100%;
            height: auto;
            margin-bottom: 25px;
        }
        .description {
            color: #333333;
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 30px;
        }
        .description a {
            color: #457ce7;
            text-decoration: none;
        }
        .description a:hover {
            text-decoration: underline;
        }
        .button {
            display: inline-block;
            background-color: #457ce7;
            color: #ffffff;
            padding: 12px 24px;
            border-radius: 3px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }
        .button:hover {
            background-color: #3a6ac5;
        }
    </style>
</head>
<body>
    <div class="container">
        <a href="/IPLPartner/login.do#/dashboard" class="button">Log in</a>
    </div>
</body>
</html>
