
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
           
        } */

        .container {
            display: block;
            height: 80vh;
            /* max-width: 1200px; */
            margin: 0 auto;
            background: white;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            overflow-y: scroll;
             scrollbar-width: none; /* Firefox */
           -ms-overflow-style: none; /* IE and Edge */
           border-radius: 16px;
        }

       

        .logo {
            position: absolute;
            top: 30px;
            left: 30px;
            color: #ff4444;
            font-size: 24px;
            font-weight: bold;
        }

        .right-panel {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: white;
            /* overflow-y: scroll; */
        }

        

        .form-header {
            margin-bottom: 40px;
        }

        .form-header h1 {
            font-size: 28px;
            color: #333;
            margin-bottom: 8px;
        }

        .form-header p {
            color: #666;
            font-size: 14px;
        }

        .avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
        }

        .avatar.sales {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
        }

        .avatar.manager {
            background: linear-gradient(135deg, #3742fa, #2f3542);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-row {
            display: flex;
            gap: 15px;
        }

        .form-row .form-group {
            flex: 1;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
            font-size: 14px;
        }

        input[type="text"],
        input[type="email"],
        input[type="password"] {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            background: #f8f9fa;
            transition: all 0.3s ease;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="password"]:focus {
            outline: none;
            border-color: #ff4444;
            background: white;
            box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
        }

        .password-field {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #666;
            font-size: 16px;
        }

        .radio-group {
            display: flex;
            gap: 20px;
            margin-top: 8px;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .radio-option input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: #ff4444;
        }

        .radio-option label {
            margin: 0;
            cursor: pointer;
            font-weight: normal;
        }

        .ikonectt-address {
            display: flex;
            align-items: center;
            gap: 0;
            margin-top: 8px;
        }

        .ikonectt-address input {
            border-radius: 8px 0 0 8px;
            border-right: none;
            flex: 1;
        }

        .ikonectt-domain {
            padding: 12px 16px;
            background: #e9ecef;
            border: 1px solid #ddd;
            border-left: none;
            border-radius: 0 8px 8px 0;
            color: #666;
            font-size: 14px;
        }

        .btn {
            width: 100%;
            padding: 14px;
            background: #ff4444;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .btn:hover {
            background: #e63939;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 20px 0;
        }

        .checkbox-group input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: #ff4444;
        }

        .checkbox-group label {
            margin: 0;
            font-size: 14px;
            color: #666;
        }

        .forgot-password {
            text-align: right;
            margin-top: 10px;
        }

        .forgot-password a {
            color: #ff4444;
            text-decoration: none;
            font-size: 14px;
        }

        .forgot-password a:hover {
            text-decoration: underline;
        }

        .otp-inputs {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }

        .otp-input {
            width: 50px;
            height: 50px;
            text-align: center;
            font-size: 18px;
            font-weight: bold;
            border: 2px solid #ddd;
            border-radius: 8px;
            background: #f8f9fa;
        }

        .otp-input:focus {
            border-color: #ff4444;
            background: white;
        }

        .otp-timer {
            font-size: 12px;
            color: #999;
            margin-top: 10px;
        }

        .resend-link {
            color: #ff4444;
            text-decoration: none;
            font-size: 14px;
            margin-top: 20px;
            display: inline-block;
        }

        .resend-link:hover {
            text-decoration: underline;
        }

        .nav-buttons {
            position: fixed;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 1000;
        }

        .nav-btn {
            padding: 8px 16px;
            background: #333;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
        }

        .nav-btn:hover {
            background: #555;
        }

        .nav-btn.active {
            background: #ff4444;
        }

        .security-illustration {
            width: 300px;
            height: 300px;
            margin: auto;
            position: relative;
        }

        .lock-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #ffa726, #ff7043);
            border-radius: 20px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: white;
        }

        .lock-icon::before {
            content: '🔒';
        }

        .shield-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #7c4dff, #3f51b5);
            border-radius: 50%;
            position: absolute;
            bottom: 20px;
            left: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
        }

        .shield-icon::before {
            content: '✓';
        }

        .password-dots {
            width: 200px;
            height: 40px;
            background: linear-gradient(135deg, #7c4dff, #3f51b5);
            border-radius: 20px;
            position: absolute;
            bottom: 40px;
            right: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
        }

        .form-error {
            color: #ff4444;
            font-size: 12px;
            margin-top: 4px;
            display: none;
        }

        .form-group.error input {
            border-color: #ff4444;
            background-color: #fff5f5;
        }

        .form-group.error .form-error {
            display: block;
        }

        .loading {
            opacity: 0.7;
            pointer-events: none;
        }

        .btn.loading {
            position: relative;
        }

        .btn.loading::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            margin: auto;
            border: 2px solid transparent;
            border-top-color: #ffffff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .screen-transition {
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.3s ease;
        }

        .screen.active {
            opacity: 1;
            transform: translateX(0);
        }

        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
            display: none;
        }

        @media (max-width: 1024px) {
            .container {
                max-width: 100%;
            }
            
            .left-panel img {
                object-position: center;
            }
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }

            .left-panel {
                min-height: 250px;
                order: 2;
            }

            .right-panel {
                padding: 20px;
                order: 1;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .nav-buttons {
                position: relative;
                top: auto;
                right: auto;
                margin-bottom: 20px;
                justify-content: center;
                flex-wrap: wrap;
            }

            .nav-btn {
                font-size: 10px;
                padding: 6px 12px;
            }

            .form-header h1 {
                font-size: 24px;
            }

            .avatar {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .security-illustration {
                width: 200px;
                height: 200px;
            }

            .lock-icon {
                width: 80px;
                height: 80px;
                font-size: 28px;
            }

            .shield-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .password-dots {
                width: 120px;
                height: 30px;
            }

            .otp-inputs {
                justify-content: center;
            }

            .otp-input {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .right-panel {
                padding: 15px;
            }

            .form-header h1 {
                font-size: 20px;
            }

            .radio-group {
                flex-direction: column;
                gap: 10px;
            }

            .ikonectt-address {
                flex-direction: column;
            }

            .ikonectt-address input {
                border-radius: 8px;
                border-right: 1px solid #ddd;
                margin-bottom: 8px;
            }

            .ikonectt-domain {
                border-radius: 8px;
                border-left: 1px solid #ddd;
                text-align: center;
            }

            .nav-buttons {
                gap: 5px;
            }

            .nav-btn {
                font-size: 9px;
                padding: 4px 8px;
            }
        }
