/* Сброс отступов */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Основные стили для всего экрана */
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Контейнер для центрирования содержимого */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Стили для SVG логотипа */
.logo {
    width: 140px;
    margin-bottom: 20px;
}

/* Стили для ссылки */
.auth-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 165px;
    height: 50px;
    background-color: #206bc4;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

/* Эффект при наведении */
.auth-link:hover {
    background-color: color(srgb 0.13 0.42 0.77 / 0.8);;
}
