         /*Шапка */
    
    
     /* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Контейнер с градиентным фоном */
        .content-container {
            width: 90%; /* Растягивается, но с небольшими отступами по бокам */
            max-width: 1200px;
            margin: 20px auto;
            background: linear-gradient(135deg, #2643bb, #90a5fa); /* Градиент */
            border-radius: 20px; /* Закругленные углы */
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            text-align: left;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Легкая тень */
        }

        /* Левая часть с текстом */
        .text-content {
            width: 50%;
        }

        .text-content h1 {
            font-size: 2.0em;
            margin-bottom: 10px;
        }

        .text-content p {
            font-size: 1.0em;
        }

        /* Правая часть с формой */
        .form-content {
            width: 40%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .form-content input {
            padding: 10px;
            margin: 10px 0;
            width: 100%;
            border-radius: 10px;
            border: 1px solid #ddd;
            font-size: 1em;
        }

        .form-content button {
            padding: 10px 20px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.2em;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .form-content button:hover {
            background-color: #388E3C;
        }

        /* Адаптация для мобильных устройств */
        @media (max-width: 768px) {
            .content-container {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .text-content {
                width: 100%;
                margin-bottom: 20px;
            }

            .form-content {
                width: 100%;
            }
        }
        
                 /*Шапка конец*/
                 
                 
                 
                 
                 
                 
                 