/* Start custom CSS for html, class: .elementor-element-6a610c6 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            min-height: 100vh;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Background animation particles */
        .background-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(147, 197, 253, 0.15), rgba(196, 181, 253, 0.1));
            backdrop-filter: blur(15px);
            border: 1px solid rgba(147, 197, 253, 0.2);
            animation: float 20s ease-in-out infinite;
        }

        .particle:nth-child(1) {
            width: 200px;
            height: 200px;
            top: -100px;
            left: 10%;
        }

        .particle:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 30%;
            right: 5%;
            animation-delay: -5s;
        }

        .particle:nth-child(3) {
            width: 180px;
            height: 180px;
            bottom: 10%;
            left: 20%;
            animation-delay: -10s;
        }

        .particle:nth-child(4) {
            width: 120px;
            height: 120px;
            top: 50%;
            right: 15%;
            animation-delay: -15s;
        }

        .particle:nth-child(5) {
            width: 160px;
            height: 160px;
            bottom: 20%;
            right: 10%;
            animation-delay: -3s;
        }

        .particle:nth-child(6) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 50%;
            animation-delay: -8s;
        }

        .particle:nth-child(7) {
            width: 140px;
            height: 140px;
            bottom: 40%;
            left: 70%;
            animation-delay: -12s;
        }

        .particle:nth-child(8) {
            width: 110px;
            height: 110px;
            top: 60%;
            left: 5%;
            animation-delay: -7s;
        }

        .particle:nth-child(9) {
            width: 130px;
            height: 130px;
            bottom: 5%;
            right: 35%;
            animation-delay: -11s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) translateX(0px);
            }
            33% {
                transform: translateY(-30px) translateX(20px);
            }
            66% {
                transform: translateY(20px) translateX(-15px);
            }
        }

        /* Glass reflection effect */
        .glass-reflection {
            position: fixed;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: -1;
        }

        /* Main container */
        .container {
            display: flex;
            min-height: 100vh;
            gap: 2rem;
            padding: 2rem;
            align-items: flex-start;
        }

        /* Login Section - Left Side */
        .login-section {
            flex: 0 0 auto;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            min-width: 420px;
            height: 100vh;
            position: sticky;
            top: 0;
        }

        .login-wrapper {
            width: 100%;
            max-width: 420px;
        }

        .login-container {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(147, 197, 253, 0.2);
            border-radius: 28px;
            padding: 3rem 2.5rem;
            box-shadow: 0 25px 50px rgba(59, 130, 246, 0.1);
            position: relative;
            overflow: hidden;
        }

        .login-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        }

        /* Logo section */
        .logo-section {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 20px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
            font-size: 2rem;
            color: white;
            font-weight: 700;
        }

        .company-name {
            font-size: 1.75rem;
            font-weight: 700;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }

        .tagline {
            font-size: 0.95rem;
            color: #64748b;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        /* Form styling */
        .form-group {
            margin-bottom: 1.75rem;
            position: relative;
        }

        .form-group label {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }

        .form-group input {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 1.5px solid rgba(147, 197, 253, 0.3);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: rgba(248, 250, 252, 0.8);
            transition: all 0.3s ease;
            color: #0f172a;
        }

        .form-group input::placeholder {
            color: #94a3b8;
        }

        .form-group input:focus {
            outline: none;
            border-color: #3b82f6;
            background: white;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .form-group input:focus + label {
            color: #3b82f6;
        }

        /* Sign in button */
        .signin-btn {
            width: 100%;
            padding: 1.1rem;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
            position: relative;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .signin-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .signin-btn:hover::before {
            left: 100%;
        }

        .signin-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
        }

        .signin-btn:active {
            transform: translateY(0);
        }

        /* Loading spinner */
        .loading {
            display: none;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top: 3px solid white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Footer */
        .footer {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(147, 197, 253, 0.15);
        }

        .footer p {
            font-size: 0.85rem;
            color: #94a3b8;
            font-weight: 500;
        }

        /* Announcement Section - Right Side */
        .announcement-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            overflow-y: auto;
            overflow-x: hidden;
            padding-right: 0.5rem;
            scrollbar-width: thin;
            scrollbar-color: rgba(147, 197, 253, 0.3) transparent;
        }

        .announcement-section::-webkit-scrollbar {
            width: 6px;
        }

        .announcement-section::-webkit-scrollbar-track {
            background: transparent;
        }

        .announcement-section::-webkit-scrollbar-thumb {
            background: rgba(147, 197, 253, 0.3);
            border-radius: 3px;
        }

        .announcement-section::-webkit-scrollbar-thumb:hover {
            background: rgba(147, 197, 253, 0.5);
        }

        .announcement-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(147, 197, 253, 0.2);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .announcement-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        }

        .announcement-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.12);
        }

        .announcement-title {
            font-size: 1.3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .announcement-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            border-radius: 10px;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .announcement-content {
            color: #475569;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .announcement-content strong {
            color: #0f172a;
            font-weight: 600;
        }

        .announcement-content p {
            margin-bottom: 0.75rem;
        }

        .announcement-content ul {
            margin: 0.75rem 0 0 1.5rem;
        }

        .announcement-content li {
            margin-bottom: 0.5rem;
        }

        .contact-info {
            margin-top: 1rem;
            padding: 1rem;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
            border-radius: 12px;
            border-left: 3px solid #3b82f6;
        }

        .contact-label {
            font-size: 0.85rem;
            color: #64748b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
        }

        .contact-number {
            font-size: 1.25rem;
            font-weight: 700;
            color: #3b82f6;
            font-family: 'Courier New', monospace;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .step {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: white;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .step-content {
            flex-grow: 1;
        }

        .step-title {
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }

        .step-description {
            font-size: 0.85rem;
            color: #64748b;
            line-height: 1.5;
        }

        /* Tablet - Hide announcement, adjust layout */
        @media (max-width: 1024px) {
            .container {
                flex-direction: column;
                gap: 1.5rem;
                padding: 1.5rem;
                align-items: center;
                justify-content: center;
            }

            .login-section {
                min-width: auto;
                width: 100%;
                max-width: 420px;
            }

            .announcement-section {
                display: none;
            }
        }

        /* Mobile - Simplified layout */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

            .login-section {
                min-width: auto;
            }

            .login-wrapper {
                max-width: 100%;
            }

            .login-container {
                padding: 2rem 1.5rem;
                border-radius: 20px;
            }

            .company-name {
                font-size: 1.5rem;
            }

            .tagline {
                font-size: 0.9rem;
            }

            .form-group input {
                padding: 0.95rem 1rem;
                font-size: 16px;
            }

            .signin-btn {
                padding: 1rem;
                font-size: 0.95rem;
            }
        }

        /* Extra small screens */
        @media (max-width: 480px) {
            .container {
                padding: 0.75rem;
            }

            .login-container {
                padding: 1.5rem 1.25rem;
            }

            .logo {
                width: 70px;
                height: 70px;
                font-size: 1.75rem;
            }

            .company-name {
                font-size: 1.25rem;
            }
        }/* End custom CSS */