
        * {
            box-sizing: border-box;
        }

        

     
        
        .form-wrapper {
            background: white;
            border-radius: 25px;
            padding: 50px 40px;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .form-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, #6a11cb, #2575fc, #ff6b6b);
            animation: gradientMove 3s ease infinite;
            background-size: 200% 200%;
        }
        
        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        form {
            width: 100%;
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 35px;
            color: #2d3436;
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .form-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 25px;
        }
        
        .form-row {
            position: relative;
        }
        
        .form-label {
            width: 20%;
            padding-right: 25px;
            vertical-align: middle;
            text-align: right;
            font-weight: 600;
            color: #2d3436;
            font-size: 1.1rem;
        }
        
        .form-control {
            width: 65%;
            position: relative;
        }
        
        .form-control i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #6a11cb;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        input[type="text"],
        input[type="email"],
        textarea {
            width: 100%;
            padding: 18px 20px 18px 10px;
            border: 2px solid #dfe6e9;
            border-radius: 15px;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            font-family: inherit;
            color: #2d3436;
        }
        
        input[type="text"]:focus,
        input[type="email"]:focus,
        textarea:focus {
            outline: none;
            border-color: #26a925;
            background: white;
            box-shadow: 0 8px 30px rgba(106, 17, 203, 0.2);
            transform: translateY(-2px);
        }
        
        input[type="text"]:focus + i,
        input[type="email"]:focus + i,
        textarea:focus + i {
            color: #ff6b6b;
            transform: translateY(-50%) scale(1.2);
        }
        
        textarea {
            min-height: 180px;
            resize: vertical;
            line-height: 1.7;
            padding-top: 20px;
        }
        
        .form-control textarea + i {
            top: 25px;
            transform: none;
        }
        
        .button-group {
            display: flex;
            justify-content: flex-end;
            gap: 20px;
            margin-top: 20px;
        }
        
        button[type="submit"],
        input[type="submit"],
        button[type="reset"],
        input[type="reset"] {
            padding: 11px 40px;
            border: none;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            min-width: 180px;
            position: relative;
            overflow: hidden;
        }
        
        button[type="submit"]::before,
        input[type="submit"]::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }
        
        button[type="submit"]:hover::before,
        input[type="submit"]:hover::before {
            left: 100%;
        }
        
        button[type="submit"],
        input[type="submit"] {
            background: linear-gradient(135deg, #6a11cb, #2575fc, #ff6b6b);
            background-size: 200% 200%;
            animation: gradientMove 3s ease infinite;
            color: white;
        }
        
        button[type="reset"],
        input[type="reset"] {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            color: #636e72;
            border: 2px solid #b2bec3;
        }
        
        button[type="submit"]:hover,
        input[type="submit"]:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(106, 17, 203, 0.4);
        }
        
        button[type="reset"]:hover,
        input[type="reset"]:hover {
            background: linear-gradient(135deg, #e9ecef, #dee2e6);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        button[type="submit"]:active,
        button[type="reset"]:active,
        input[type="submit"]:active,
        input[type="reset"]:active {
            transform: translateY(-2px);
        }
        
        .form-footer {
            margin-top: 40px;
            text-align: center;
            color: #636e72;
            font-size: 0.95rem;
            padding-top: 25px;
            border-top: 1px solid #dfe6e9;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .required {
            color: #ff4757;
            font-weight: bold;
        }
        
        .hint {
            font-size: 0.9rem;
            color: #636e72;
            margin-top: 8px;
            display: block;
            font-style: italic;
        }
        
        .character-counter {
            font-size: 0.85rem;
            color: #636e72;
            text-align: right;
            margin-top: 8px;
        }
        
        .character-counter.warning {
            color: #ff6b6b;
            font-weight: bold;
        }
        
        .success-message {
            display: none;
            padding: 20px;
            background: linear-gradient(135deg, #00b09b, #96c93d);
            color: white;
            border-radius: 15px;
            margin-top: 20px;
            text-align: center;
            animation: slideIn 0.5s ease;
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 768px) {
            .container {
                max-width: 100%;
                padding: 10px;
            }
            
            .form-wrapper {
                padding: 30px 20px;
                border-radius: 20px;
            }

            
            .form-label,
            .form-control {
                display: block;
                width: 100%;
                text-align: left;
            }
            
            .form-label {
                padding-right: 0;
                margin-bottom: 10px;
                font-size: 1rem;
            }
            
            .form-control i {
                left: 15px;
            }
            
            input[type="text"],
            input[type="email"],
            textarea {
                padding: 15px 15px 15px 50px;
                font-size: 1rem;
            }
            
            .form-table {
                border-spacing: 0 20px;
            }
            
            .button-group {
                flex-direction: column;
                gap: 15px;
            }
            
            button[type="submit"],
            input[type="submit"],
            button[type="reset"],
            input[type="reset"] {
                width: 100%;
                min-width: auto;
                padding: 16px 20px;
            }
        }
        
        .floating-icon {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6a11cb, #2575fc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(106, 17, 203, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .floating-icon:hover {
            transform: scale(1.1) rotate(360deg);
            box-shadow: 0 15px 40px rgba(106, 17, 203, 0.6);
        }
 