     html, body {
          margin: 0;
          padding: 0;
          font-family: 'Roboto', sans-serif;
          background-color: rgb(255, 255, 255);
      }
        * {
            outline: none;
        }
      h1 {
          text-align: center;
          font-weight: 20;
          margin-top: 60px;
          font-size: 25px;
          margin-bottom: 10px;
          color: #111111;
      }
      p {
          color: #111111;
      }
      li {
          color: #111111;
      }
     .form-container {
         text-align: center;
         margin-top: 60px;
        }
     .return-button {
         margin-top: 20px;
     }
     .return-button a {
            margin-top: 20px;
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            border-radius: 20px;
            background: linear-gradient(to right, #cb3b30, #fb0027);
            color: white;
            cursor: pointer;
            transition: opacity 0.2s ease-in-out;
            text-decoration: none;
}

    .return-button a:hover {
        opacity: 0.6;
    }

            #preloader {
            position: fixed; /* Зафиксировать лоадер на экране */
            top: 0;
            left: 0;
            width: 100vw; /* Полная ширина экрана */
            height: 100vh; /* Полная высота экрана */
            background-color: #ffffff; /* Фон лоадера */
            display: flex;
            justify-content: center; /* Центровка по горизонтали */
            align-items: center; /* Центровка по вертикали */
            z-index: 9999999; /* Наивысший приоритет слоя */
            opacity: 1; /* Полностью видимый */
            transition: opacity 0.5s ease; /* Анимация исчезновения */
        }


        .spinner {
            border: 5px solid rgba(0, 0, 0, 0.1);
            border-top: 5px solid #fb0027; /* Цвет вращающейся части */
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }



        /* Общий фон тогла (контейнер) */
        .toggle {
            position: absolute;
            right: 20px;
            z-index: 1000;
            width: 60px;
            height: 30px;
            background: linear-gradient(to right, #cb3b30, #fb0027);   /* фон тогла по умолчанию */
            border-radius: 15px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        /* Круг (ползунок) внутри тогла */
        .toggle-circle {
            width: 24px;
            height: 24px;
            background-color: #ff415b; /* цвет круга */
            border-radius: 50%;
            position: absolute;
            top: 3px;
            left: 3px;  /* начальное положение */
            transition: left 0.3s ease, background-color 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
        }

        /* Иконки внутри круга */
        .icon {
            font-size: 12px;
            color: white;
            position: absolute;
            z-index: 3;
            opacity: 0; /* по умолчанию скрыты */
            transition: opacity 0.3s ease;
        }

        /* --- Состояние 1: День --- */
        .toggle.state-1 {
            background: linear-gradient(to right, #cb3b30, #fb0027); /* фон тогла */
        }
        .toggle.state-1 .toggle-circle {
            left: 3px; /* круг в начале */
            background-color: #ff415b;
        }
        .toggle.state-1 .icon.state-1 {
            opacity: 1; /* показываем солнце */
        }

        /* --- Состояние 2: Авто --- */
        .toggle.state-2 {
            background: linear-gradient(to right, #cb3b30, #fb0027);
        }
        .toggle.state-2 .toggle-circle {
            left: 18px;
            background-color: #ff415b;
        }
        /* Только центральную иконку показываем */
        .toggle.state-2 .icon.state-2 {
            opacity: 1;
        }

        /* --- Состояние 3: Ночь --- */
        .toggle.state-3 {
            background: linear-gradient(to right, #cb3b30, #fb0027);
        }
        .toggle.state-3 .toggle-circle {
            left: 33px;
            background-color: #ff415b;
        }
        .toggle.state-3 .icon.state-3 {
            opacity: 1; /* показываем луну */
        }



        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            display: flex;
            align-items: center;
            padding: 0 20px;
            z-index: 10000;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }


        .logo-text {
            font-size: 22px;
            color: #111111;
            padding-left: 32px;
            margin-top: -28px;
            font-weight: 250;
            letter-spacing: -0.5px;
        }


        .burger-line {
            height: 1px;
            background: #000;
            border-radius: 20px;
        }



        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: 250px;
            height: 100%;
            transform: translateX(-250px);
            transition: transform 0.3s ease;
            z-index: 9999;
            padding-top: 20px;
            overflow: hidden;
            background: rgba(227, 226, 226, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }


        .menu-items li a {
            color: #000000;
            text-decoration: none;
            font-size: 18px;
            padding: 10px 0;
            display: block;
            transition: background 0.3s;
            border-radius: 15px;
        }