 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg,  #e8f6f3  0%,  #45b39d 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .container {
            display: flex;
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            max-width: 1200px;
            width: 100%;
            min-height: 600px;
        }

        .hero-section {
            flex: 1;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
        }

        .hero-image:hover {
            transform: scale(1.05);
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255,255,255,0.1) 0%, transparent 50%);
        }

        .form-section {
            flex: 1;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 40px;
            text-align: center;
        }

        .logo .highlight {
            color: #3498db;
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .input-container {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-icon {
            position: absolute;
            left: 20px;
            color: #6c757d;
            font-size: 1.1rem;
            z-index: 2;
        }

        .form-input {
            width: 100%;
            padding: 18px 20px 18px 55px;
            border: 2px solid #e9ecef;
            border-radius: 16px;
            font-size: 1rem;
            background: #f8f9fa;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input:focus {
            border-color: #3498db;
            background: white;
            box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
        }

        .form-input::placeholder {
            color: #adb5bd;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .file-upload {
            margin: 32px 0;
        }

        .upload-section {
            text-align: center;
            margin-bottom: 20px;
        }

        .upload-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #495057;
            margin-bottom: 8px;
        }

        .upload-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: #f8f9fa;
            border: 2px dashed #dee2e6;
            border-radius: 16px;
            color: #6c757d;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .upload-button:hover {
            background: #e9ecef;
            border-color: #3498db;
            color: #3498db;
        }

        .upload-button input[type="file"] {
            display: none;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 24px 0;
        }

        .custom-checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid #dee2e6;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .custom-checkbox.checked {
            background: #3498db;
            border-color: #3498db;
            color: white;
        }

        .checkbox-text {
            font-size: 0.95rem;
            color: #6c757d;
        }

        .privacy-link {
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
        }

        .privacy-link:hover {
            text-decoration: underline;
        }

        .submit-btn {
            width: 60%;
            padding: 18px;
            background: linear-gradient(135deg,  #45b39d  0%,rgb(116, 189, 152) 100%);
            color: white;
            border: none;
            border-radius: 16px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
            margin: 8px auto 0 auto;
             display: block;   
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

    /* Mobile Responsive - iPhone 13 Pro */
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            .container {
                flex-direction: column;
                border-radius: 20px;
                min-height: auto;
            }

            .hero-section {
                display: none;
            }

            .hero-image {
                /* Mobile styles handled by parent container */
            }

            .hero-content {
                padding: 30px 20px;
            }

            .form-section {
                padding: 40px 30px;
            }

            .logo {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }

            .form-group {
                margin-bottom: 20px;
            }

            .form-input {
                padding: 16px 18px 16px 50px;
                font-size: 16px; /* Prevents zoom on iOS */
            }

            .input-icon {
                left: 18px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .upload-button {
                padding: 12px 24px;
                font-size: 0.9rem;
            }

            .submit-btn {
                padding: 16px;
                font-size: 1rem;
            }
        }

        /* iPhone 13 Pro specific */
        @media (max-width: 428px) {
            .form-section {
                padding: 30px 20px;
            }

            .hero-image {
                /* Mobile styles handled by parent container */
            }

            .upload-title {
                font-size: 1rem;
            }
        }