body {
    margin: 0;
    overflow: hidden;
    height: 100vh;
    background-color: #282c35;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content {
    filter: blur(10px); /* Применяем размытие ко всему содержимому */
    transition: filter 0.5s ease;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

img {
    width: auto;
    height: 100vh;
    object-fit: cover;
}

#loginContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    background-color: rgba(40, 44, 53, 0.8); /* Полупрозрачный черный фон */
    color: white;
    border-radius: 10px;
    text-align: center;
    z-index: 9999;
    width: 300px;
}

#loginContainer h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

#loginContainer input[type="text"],
#loginContainer input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    color: #333;
}

#loginContainer button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

#loginContainer button:hover {
    background-color: #0056b3;
}

.video-container {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 720px; /* Ширина видео остается постоянной */
    height: 566px; /* Высота контейнера для видео */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

video {
    width: auto; /* Ширина видео адаптируется под высоту контейнера */
    height: 100%; /* Высота видео равна высоте контейнера */
    display: none; /* Скрываем видео до нажатия кнопки */
}

.fixed-image {
    position: fixed; /* Фиксируем изображение */
    bottom: 0px;    /* Расстояние от нижнего края */
    left: 10px;      /* Расстояние от левого края */
    /* width: 247px;     /* Размер изображения (можно изменить) */
    height: auto;    /* Сохраняем пропорции */
    /* z-index: 1000;   /* Убеждаемся, что изображение поверх других элементов */
    /* border: 2px solid #fff; /* Добавляем рамку для декора (необязательно) */
    /* border-radius: 5px;    /* Скругляем углы (необязательно) */
}
