
        .form-content {
            flex: 1;
            min-width: 300px;
        }
        
        .form-container {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(8px);
            border-radius: 14px;
            padding: 30px;
            box-shadow: 
                0 0 25px rgba(0, 114, 255, 0.5),
                0 0 45px rgba(0, 198, 255, 0.25);
            border: 1px solid rgba(0, 198, 255, 0.5);
            position: relative;
            overflow: hidden;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .form-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0,198,255,0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .form-header h2 {
            font-size: 1.8rem;
            margin-bottom: 8px;
            background: linear-gradient(to right, #00c6ff, #0072ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .form-header p {
            font-size: 1rem;
            color: #a0aec0;
            line-height: 1.4;
        }
        
        .form-group {
            margin-bottom: 16px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: #a0aec0;
            font-size: 0.9rem;
            padding-left: 5px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px 10px 10px 38px;
            border-radius: 8px;
            border: 1px solid rgba(0, 198, 255, 0.4);
            background: rgba(10, 14, 23, 0.9);
            color: #fff;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00c6ff;
            box-shadow: 0 0 12px rgba(0, 198, 255, 0.5);
        }
        
        .form-group textarea {
            min-height: 90px;
            resize: vertical;
            padding-top: 10px;
        }
        
        .input-icon {
            position: absolute;
            left: 12px;
            top: 40px;
            color: #00c6ff;
            font-size: 1rem;
        }
        
        .error-message {
            color: #ff3860;
            font-size: 0.75rem;
            margin-top: 4px;
            padding-left: 5px;
            display: block;
            height: 16px;
        }
        
        .btn-group {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .btn {
            flex: 1;
            padding: 12px;
            border-radius: 8px;
            border: none;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(30deg);
            transition: all 0.5s;
        }
        
        .btn:hover::after {
            transform: translateX(100%) rotate(30deg);
        }
        
        .btn-primary {
            background: linear-gradient(to right, #00c6ff, #0072ff);
            color: white;
        }
        
        .btn-secondary {
            background: transparent;
            color: #00c6ff;
            border: 2px solid #00c6ff;
        }
        
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        
        .btn-primary:hover {
            background: linear-gradient(to right, #0072ff, #00c6ff);
        }
        
        .btn-secondary:hover {
            background: rgba(0, 198, 255, 0.1);
        }
        
        .disclaimer {
            margin-top: 20px;
            font-size: 0.75rem;
            color: #718096;
            text-align: center;
            line-height: 1.4;
        }
        
        /* Анимации */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 198, 255, 0.7); }
            70% { box-shadow: 0 0 0 8px rgba(0, 198, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 198, 255, 0); }
        }
        
        .form-container {
            animation: pulse 4s infinite;
        }
        
        /* Уведомление об успешной отправке */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(15, 23, 42, 0.95);
            border: 1px solid rgba(0, 198, 255, 0.5);
            border-radius: 10px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            transform: translateX(150%);
            transition: transform 0.5s ease;
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        .notification-icon {
            font-size: 1.8rem;
            color: #00c6ff;
        }
        
        .notification-content h3 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            background: linear-gradient(to right, #00c6ff, #0072ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .notification-content p {
            font-size: 0.9rem;
            color: #a0aec0;
        }
        
        .loader {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(0, 198, 255, 0.3);
            border-radius: 50%;
            border-top: 3px solid #00c6ff;
            animation: spin 1s linear infinite;
            margin-right: 10px;
            vertical-align: middle;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            p.subtitle {
                font-size: 1.1rem;
            }
        }
.hero-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.hero-text {
    margin: 0 auto auto;
}
@media (max-width: 1279px) {
    .form-container {
        margin: 0 auto;
    }

}

.form-header {
    display: none;
}
